diff options
author | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-09-02 02:36:18 +0000 |
---|---|---|
committer | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-09-02 02:36:18 +0000 |
commit | d7cb97b8bf8945b6f04bcccbb9be72d638158321 (patch) | |
tree | d2ff4fef7b9192de63761935103699569ecbb2ee /libbb | |
parent | 253ff43f62644ee79597eed14b49dcf291f198a1 (diff) | |
download | busybox-w32-d7cb97b8bf8945b6f04bcccbb9be72d638158321.tar.gz busybox-w32-d7cb97b8bf8945b6f04bcccbb9be72d638158321.tar.bz2 busybox-w32-d7cb97b8bf8945b6f04bcccbb9be72d638158321.zip |
move all "-/bin/sh" "/bin/sh" and "sh" to libbb/messages.c file as one
constant.
Vodz last_patch_107
git-svn-id: svn://busybox.net/trunk/busybox@7365 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/Makefile.in | 2 | ||||
-rw-r--r-- | libbb/messages.c | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libbb/Makefile.in b/libbb/Makefile.in index 0d7103ef0..0ccd85dbe 100644 --- a/libbb/Makefile.in +++ b/libbb/Makefile.in | |||
@@ -59,7 +59,7 @@ LIBBB_MOBJ0:=full_version.o \ | |||
59 | can_not_create_raw_socket.o perm_denied_are_you_root.o \ | 59 | can_not_create_raw_socket.o perm_denied_are_you_root.o \ |
60 | shadow_file.o passwd_file.o group_file.o gshadow_file.o nologin_file.o \ | 60 | shadow_file.o passwd_file.o group_file.o gshadow_file.o nologin_file.o \ |
61 | securetty_file.o motd_file.o \ | 61 | securetty_file.o motd_file.o \ |
62 | msg_standard_input.o msg_standard_output.o | 62 | msg_standard_input.o msg_standard_output.o shell_file.o |
63 | 63 | ||
64 | LIBBB_MSRC1:=$(LIBBB_DIR)xfuncs.c | 64 | LIBBB_MSRC1:=$(LIBBB_DIR)xfuncs.c |
65 | LIBBB_MOBJ1:=xmalloc.o xrealloc.o xcalloc.o xstrdup.o xstrndup.o \ | 65 | LIBBB_MOBJ1:=xmalloc.o xrealloc.o xcalloc.o xstrdup.o xstrndup.o \ |
diff --git a/libbb/messages.c b/libbb/messages.c index 11493db12..adfd1ffcc 100644 --- a/libbb/messages.c +++ b/libbb/messages.c | |||
@@ -90,3 +90,7 @@ const char * const bb_path_securetty_file = SECURETTY_FILE; | |||
90 | const char * const bb_path_motd_file = MOTD_FILE; | 90 | const char * const bb_path_motd_file = MOTD_FILE; |
91 | #endif | 91 | #endif |
92 | 92 | ||
93 | #ifdef L_shell_file | ||
94 | const char * const bb_default_login_shell = LIBBB_DEFAULT_LOGIN_SHELL; | ||
95 | #endif | ||
96 | |||