[BusyBox-cvs] svn commit: trunk/busybox: include libbb

andersen at busybox.net andersen at busybox.net
Sat Apr 16 07:42:36 UTC 2005


Author: andersen
Date: 2005-04-16 01:42:35 -0600 (Sat, 16 Apr 2005)
New Revision: 10116

Log:
Add bb_msg_read_error


Modified:
   trunk/busybox/include/libbb.h
   trunk/busybox/libbb/Makefile.in
   trunk/busybox/libbb/messages.c


Changeset:
Modified: trunk/busybox/include/libbb.h
===================================================================
--- trunk/busybox/include/libbb.h	2005-04-16 04:56:11 UTC (rev 10115)
+++ trunk/busybox/include/libbb.h	2005-04-16 07:42:35 UTC (rev 10116)
@@ -324,6 +324,7 @@
 extern const char * const bb_msg_memory_exhausted;
 extern const char * const bb_msg_invalid_date;
 extern const char * const bb_msg_io_error;
+extern const char * const bb_msg_read_error;
 extern const char * const bb_msg_write_error;
 extern const char * const bb_msg_name_longer_than_foo;
 extern const char * const bb_msg_unknown;

Modified: trunk/busybox/libbb/Makefile.in
===================================================================
--- trunk/busybox/libbb/Makefile.in	2005-04-16 04:56:11 UTC (rev 10115)
+++ trunk/busybox/libbb/Makefile.in	2005-04-16 07:42:35 UTC (rev 10116)
@@ -53,7 +53,7 @@
 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 \

Modified: trunk/busybox/libbb/messages.c
===================================================================
--- trunk/busybox/libbb/messages.c	2005-04-16 04:56:11 UTC (rev 10115)
+++ trunk/busybox/libbb/messages.c	2005-04-16 07:42:35 UTC (rev 10116)
@@ -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




More information about the busybox-cvs mailing list