X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;ds=sidebyside;f=libbb%2Fmessages.c;h=e11dddc50f87933d33fe61598a17fce590dffc73;hb=164c5c80ba122a6ed71a29d41730c802750a5ae1;hp=e5ffbf7f75c61e5c960efb0529c94f0bba4426af;hpb=cad5364599eb5062d59e0c397ed638ddd61a8d5d;p=oweals%2Fbusybox.git diff --git a/libbb/messages.c b/libbb/messages.c index e5ffbf7f7..e11dddc50 100644 --- a/libbb/messages.c +++ b/libbb/messages.c @@ -1,7 +1,6 @@ /* vi: set sw=4 ts=4: */ /* - * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen - * Copyright (C) 1999,2000,2001 by Erik Andersen + * Copyright (C) 1999-2004 by Erik Andersen * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -37,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 @@ -91,3 +93,14 @@ const char * const bb_path_securetty_file = SECURETTY_FILE; const char * const bb_path_motd_file = MOTD_FILE; #endif +#ifdef L_shell_file +const char * const bb_default_login_shell = LIBBB_DEFAULT_LOGIN_SHELL; +#endif + +#ifdef L_bb_dev_null +const char * const bb_dev_null = "/dev/null"; +#endif + +#ifdef L_bb_common_bufsiz1 +char bb_common_bufsiz1[BUFSIZ+1]; +#endif