diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-14 14:04:58 +1000 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-14 14:04:58 +1000 |
commit | f28d4b20905b5b1f52ffa52060a0c6caf4b055ba (patch) | |
tree | 26196b8132f10ca96ac52d4aedc155138b475118 /libbb/messages.c | |
parent | 0c9d2455301ed633826e222aacd930126990913e (diff) | |
parent | 0004e994934374b5695e004bbcb7b1fd67a170f2 (diff) | |
download | busybox-w32-f28d4b20905b5b1f52ffa52060a0c6caf4b055ba.tar.gz busybox-w32-f28d4b20905b5b1f52ffa52060a0c6caf4b055ba.tar.bz2 busybox-w32-f28d4b20905b5b1f52ffa52060a0c6caf4b055ba.zip |
Merge branch 'origin/master' (early part)
Conflicts:
include/libbb.h
libbb/messages.c
Diffstat (limited to 'libbb/messages.c')
-rw-r--r-- | libbb/messages.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/libbb/messages.c b/libbb/messages.c index 0c13449c0..3c3ec3519 100644 --- a/libbb/messages.c +++ b/libbb/messages.c | |||
@@ -24,8 +24,6 @@ const char bb_banner[] ALIGN1 = BANNER; | |||
24 | 24 | ||
25 | const char bb_msg_memory_exhausted[] ALIGN1 = "memory exhausted"; | 25 | const char bb_msg_memory_exhausted[] ALIGN1 = "memory exhausted"; |
26 | const char bb_msg_invalid_date[] ALIGN1 = "invalid date '%s'"; | 26 | const char bb_msg_invalid_date[] ALIGN1 = "invalid date '%s'"; |
27 | const char bb_msg_write_error[] ALIGN1 = "write error"; | ||
28 | const char bb_msg_read_error[] ALIGN1 = "read error"; | ||
29 | const char bb_msg_unknown[] ALIGN1 = "(unknown)"; | 27 | const char bb_msg_unknown[] ALIGN1 = "(unknown)"; |
30 | const char bb_msg_can_not_create_raw_socket[] ALIGN1 = "can't create raw socket"; | 28 | const char bb_msg_can_not_create_raw_socket[] ALIGN1 = "can't create raw socket"; |
31 | const char bb_msg_perm_denied_are_you_root[] ALIGN1 = "permission denied (are you root?)"; | 29 | const char bb_msg_perm_denied_are_you_root[] ALIGN1 = "permission denied (are you root?)"; |
@@ -35,18 +33,9 @@ const char bb_msg_invalid_arg[] ALIGN1 = "invalid argument '%s' to '%s'"; | |||
35 | const char bb_msg_standard_input[] ALIGN1 = "standard input"; | 33 | const char bb_msg_standard_input[] ALIGN1 = "standard input"; |
36 | const char bb_msg_standard_output[] ALIGN1 = "standard output"; | 34 | const char bb_msg_standard_output[] ALIGN1 = "standard output"; |
37 | 35 | ||
38 | const char bb_str_default[] ALIGN1 = "default"; | ||
39 | const char bb_hexdigits_upcase[] ALIGN1 = "0123456789ABCDEF"; | 36 | const char bb_hexdigits_upcase[] ALIGN1 = "0123456789ABCDEF"; |
40 | 37 | ||
41 | const char bb_path_passwd_file[] ALIGN1 = "/etc/passwd"; | 38 | #if !ENABLE_PLATFORM_MINGW32 |
42 | const char bb_path_shadow_file[] ALIGN1 = "/etc/shadow"; | ||
43 | const char bb_path_group_file[] ALIGN1 = "/etc/group"; | ||
44 | const char bb_path_gshadow_file[] ALIGN1 = "/etc/gshadow"; | ||
45 | const char bb_path_motd_file[] ALIGN1 = "/etc/motd"; | ||
46 | const char bb_dev_null[] ALIGN1 = "/dev/null"; | ||
47 | #if ENABLE_PLATFORM_MINGW32 | ||
48 | /* bb_busybox_exec_path is redefined to get_busybox_exec_path() in libbb.h */ | ||
49 | #else | ||
50 | const char bb_busybox_exec_path[] ALIGN1 = CONFIG_BUSYBOX_EXEC_PATH; | 39 | const char bb_busybox_exec_path[] ALIGN1 = CONFIG_BUSYBOX_EXEC_PATH; |
51 | #endif | 40 | #endif |
52 | const char bb_default_login_shell[] ALIGN1 = LIBBB_DEFAULT_LOGIN_SHELL; | 41 | const char bb_default_login_shell[] ALIGN1 = LIBBB_DEFAULT_LOGIN_SHELL; |