diff options
author | Rob Landley <rob@landley.net> | 2012-07-21 18:38:36 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2012-07-21 18:38:36 -0500 |
commit | 6ba38c2c79c12c5f2227ee4a87c9875fae407332 (patch) | |
tree | e63a13020909ab6a881b4283465284af3fbbcd82 /lib/lib.h | |
parent | 6d878191f18b89ac6c40f078fd62e8b61f484023 (diff) | |
download | toybox-6ba38c2c79c12c5f2227ee4a87c9875fae407332.tar.gz |
Use "_password" instead of "_passwd" for names in lib/password.c.
Diffstat (limited to 'lib/lib.h')
-rw-r--r-- | lib/lib.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -170,6 +170,6 @@ char *num_to_sig(int sig); mode_t string_to_mode(char *mode_str, mode_t base); // password helper functions -int read_passwd(char * buff, int buflen, char* mesg); -int update_passwd(char *filename, char* username, char* encrypted); +int read_password(char * buff, int buflen, char* mesg); +int update_password(char *filename, char* username, char* encrypted); |