diff options
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h index 0b94f70fd..1faa9e9fd 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -1142,9 +1142,16 @@ extern int obscure(const char *old, const char *newval, const struct passwd *pwd | |||
1142 | * (otherwise we risk having same salt generated) | 1142 | * (otherwise we risk having same salt generated) |
1143 | */ | 1143 | */ |
1144 | extern int crypt_make_salt(char *p, int cnt, int rnd) FAST_FUNC; | 1144 | extern int crypt_make_salt(char *p, int cnt, int rnd) FAST_FUNC; |
1145 | |||
1145 | /* Returns number of lines changed, or -1 on error */ | 1146 | /* Returns number of lines changed, or -1 on error */ |
1146 | extern int update_passwd(const char *filename, const char *username, | 1147 | #if !(ENABLE_FEATURE_ADDUSER_TO_GROUP || ENABLE_FEATURE_DEL_USER_FROM_GROUP) |
1147 | const char *new_pw) FAST_FUNC; | 1148 | #define update_passwd(filename, username, data, member) \ |
1149 | update_passwd(filename, username, data) | ||
1150 | #endif | ||
1151 | extern int update_passwd(const char *filename, | ||
1152 | const char *username, | ||
1153 | const char *data, | ||
1154 | const char *member) FAST_FUNC; | ||
1148 | 1155 | ||
1149 | int index_in_str_array(const char *const string_array[], const char *key) FAST_FUNC; | 1156 | int index_in_str_array(const char *const string_array[], const char *key) FAST_FUNC; |
1150 | int index_in_strings(const char *strings, const char *key) FAST_FUNC; | 1157 | int index_in_strings(const char *strings, const char *key) FAST_FUNC; |