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 /toys/login.c | |
parent | 6d878191f18b89ac6c40f078fd62e8b61f484023 (diff) | |
download | toybox-6ba38c2c79c12c5f2227ee4a87c9875fae407332.tar.gz |
Use "_password" instead of "_passwd" for names in lib/password.c.
Diffstat (limited to 'toys/login.c')
-rw-r--r-- | toys/login.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/login.c b/toys/login.c index 78fa55f8..ac04adbe 100644 --- a/toys/login.c +++ b/toys/login.c @@ -71,7 +71,7 @@ int verify_password(char * pwd) { char * pass; - if (read_passwd(toybuf, sizeof(toybuf), "Password: ")) + if (read_password(toybuf, sizeof(toybuf), "Password: ")) return 1; if (!pwd) return 1; |