diff options
Diffstat (limited to 'libbb/messages.c')
-rw-r--r-- | libbb/messages.c | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/libbb/messages.c b/libbb/messages.c index 895cfdc2b..185c1ee91 100644 --- a/libbb/messages.c +++ b/libbb/messages.c | |||
@@ -66,3 +66,39 @@ | |||
66 | #ifdef L_can_not_create_raw_socket | 66 | #ifdef L_can_not_create_raw_socket |
67 | const char * const can_not_create_raw_socket = "can`t create raw socket"; | 67 | const char * const can_not_create_raw_socket = "can`t create raw socket"; |
68 | #endif | 68 | #endif |
69 | |||
70 | #ifdef L_passwd_file | ||
71 | #define PASSWD_FILE "/etc/passwd" | ||
72 | const char * const passwd_file = PASSWD_FILE; | ||
73 | #endif | ||
74 | |||
75 | #ifdef L_shadow_file | ||
76 | #define SHADOW_FILE "/etc/shadow" | ||
77 | const char * const shadow_file = SHADOW_FILE; | ||
78 | #endif | ||
79 | |||
80 | #ifdef L_group_file | ||
81 | #define GROUP_FILE "/etc/group" | ||
82 | const char * const group_file = GROUP_FILE; | ||
83 | #endif | ||
84 | |||
85 | #ifdef L_gshadow_file | ||
86 | #define GSHADOW_FILE "/etc/gshadow" | ||
87 | const char * const gshadow_file = GSHADOW_FILE; | ||
88 | #endif | ||
89 | |||
90 | #ifdef L_nologin_file | ||
91 | #define NOLOGIN_FILE "/etc/nologin" | ||
92 | const char * const nologin_file = NOLOGIN_FILE; | ||
93 | #endif | ||
94 | |||
95 | #ifdef L_securetty_file | ||
96 | #define SECURETTY_FILE "/etc/securetty" | ||
97 | const char * const securetty_file = SECURETTY_FILE; | ||
98 | #endif | ||
99 | |||
100 | #ifdef L_motd_file | ||
101 | #define MOTD_FILE "/etc/motd" | ||
102 | const char * const motd_file = MOTD_FILE; | ||
103 | #endif | ||
104 | |||