aboutsummaryrefslogtreecommitdiff
path: root/libbb/messages.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/messages.c')
-rw-r--r--libbb/messages.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libbb/messages.c b/libbb/messages.c
index 16aaea553..9f62b9b0d 100644
--- a/libbb/messages.c
+++ b/libbb/messages.c
@@ -40,6 +40,10 @@ const char bb_path_motd_file[] = "/etc/motd";
40const char bb_dev_null[] = "/dev/null"; 40const char bb_dev_null[] = "/dev/null";
41const char bb_busybox_exec_path[] = CONFIG_BUSYBOX_EXEC_PATH; 41const char bb_busybox_exec_path[] = CONFIG_BUSYBOX_EXEC_PATH;
42const char bb_default_login_shell[] = LIBBB_DEFAULT_LOGIN_SHELL; 42const char bb_default_login_shell[] = LIBBB_DEFAULT_LOGIN_SHELL;
43/* util-linux manpage says /sbin:/bin:/usr/sbin:/usr/bin,
44 * but I want to save a few bytes here. Check libbb.h before changing! */
45const char bb_default_root_login_path[] = "/sbin:/usr/sbin:/bin:/usr/bin";
46
43 47
44const int const_int_0; 48const int const_int_0;
45const int const_int_1 = 1; 49const int const_int_1 = 1;