diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-04-16 07:42:35 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-04-16 07:42:35 +0000 |
commit | b902160dfbc73de1ccf34a4e9ef6821909936f17 (patch) | |
tree | 274a5ccd81cbbc251716dfc8a70c997bde04b171 /libbb | |
parent | 9c609205b408396708eea9bf6148d3878cb55118 (diff) | |
download | busybox-w32-b902160dfbc73de1ccf34a4e9ef6821909936f17.tar.gz busybox-w32-b902160dfbc73de1ccf34a4e9ef6821909936f17.tar.bz2 busybox-w32-b902160dfbc73de1ccf34a4e9ef6821909936f17.zip |
Add bb_msg_read_error
git-svn-id: svn://busybox.net/trunk/busybox@10116 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/Makefile.in | 2 | ||||
-rw-r--r-- | libbb/messages.c | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/libbb/Makefile.in b/libbb/Makefile.in index 85d4a967b..d4c5ec14a 100644 --- a/libbb/Makefile.in +++ b/libbb/Makefile.in | |||
@@ -53,7 +53,7 @@ LIBBB_OBJS=$(patsubst %.c,$(LIBBB_DIR)%.o, $(LIBBB_SRC)) | |||
53 | LIBBB_MSRC0:=$(srcdir)/messages.c | 53 | LIBBB_MSRC0:=$(srcdir)/messages.c |
54 | LIBBB_MOBJ0:=full_version.o \ | 54 | LIBBB_MOBJ0:=full_version.o \ |
55 | memory_exhausted.o invalid_date.o io_error.o \ | 55 | memory_exhausted.o invalid_date.o io_error.o \ |
56 | write_error.o name_longer_than_foo.o unknown.o \ | 56 | read_error.o write_error.o name_longer_than_foo.o unknown.o \ |
57 | can_not_create_raw_socket.o perm_denied_are_you_root.o \ | 57 | can_not_create_raw_socket.o perm_denied_are_you_root.o \ |
58 | shadow_file.o passwd_file.o group_file.o gshadow_file.o nologin_file.o \ | 58 | shadow_file.o passwd_file.o group_file.o gshadow_file.o nologin_file.o \ |
59 | securetty_file.o motd_file.o \ | 59 | securetty_file.o motd_file.o \ |
diff --git a/libbb/messages.c b/libbb/messages.c index 671c452d2..c3f307ec5 100644 --- a/libbb/messages.c +++ b/libbb/messages.c | |||
@@ -36,6 +36,9 @@ | |||
36 | #ifdef L_write_error | 36 | #ifdef L_write_error |
37 | const char * const bb_msg_write_error = "Write Error"; | 37 | const char * const bb_msg_write_error = "Write Error"; |
38 | #endif | 38 | #endif |
39 | #ifdef L_read_error | ||
40 | const char * const bb_msg_read_error = "Read Error"; | ||
41 | #endif | ||
39 | #ifdef L_name_longer_than_foo | 42 | #ifdef L_name_longer_than_foo |
40 | const char * const bb_msg_name_longer_than_foo = "Names longer than %d chars not supported."; | 43 | const char * const bb_msg_name_longer_than_foo = "Names longer than %d chars not supported."; |
41 | #endif | 44 | #endif |