From 3cd198619570dd643ebe748302ae5551fd16fdaa Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sat, 16 Apr 2005 07:42:35 +0000 Subject: Add bb_msg_read_error --- libbb/Makefile.in | 2 +- libbb/messages.c | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) (limited to 'libbb') 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)) LIBBB_MSRC0:=$(srcdir)/messages.c LIBBB_MOBJ0:=full_version.o \ memory_exhausted.o invalid_date.o io_error.o \ - write_error.o name_longer_than_foo.o unknown.o \ + read_error.o write_error.o name_longer_than_foo.o unknown.o \ can_not_create_raw_socket.o perm_denied_are_you_root.o \ shadow_file.o passwd_file.o group_file.o gshadow_file.o nologin_file.o \ 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 @@ #ifdef L_write_error const char * const bb_msg_write_error = "Write Error"; #endif +#ifdef L_read_error + const char * const bb_msg_read_error = "Read Error"; +#endif #ifdef L_name_longer_than_foo const char * const bb_msg_name_longer_than_foo = "Names longer than %d chars not supported."; #endif -- cgit v1.2.3