aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2012-07-21 18:38:36 -0500
committerRob Landley <rob@landley.net>2012-07-21 18:38:36 -0500
commit6ba38c2c79c12c5f2227ee4a87c9875fae407332 (patch)
treee63a13020909ab6a881b4283465284af3fbbcd82
parent6d878191f18b89ac6c40f078fd62e8b61f484023 (diff)
downloadtoybox-6ba38c2c79c12c5f2227ee4a87c9875fae407332.tar.gz
Use "_password" instead of "_passwd" for names in lib/password.c.
-rw-r--r--lib/lib.h4
-rw-r--r--lib/password.c4
-rw-r--r--toys/login.c2
-rw-r--r--toys/passwd.c10
4 files changed, 10 insertions, 10 deletions
diff --git a/lib/lib.h b/lib/lib.h
index de2e214c..992d7d24 100644
--- a/lib/lib.h
+++ b/lib/lib.h
@@ -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);
diff --git a/lib/password.c b/lib/password.c
index 2b11144e..8221a022 100644
--- a/lib/password.c
+++ b/lib/password.c
@@ -8,7 +8,7 @@
#include <time.h>
-int read_passwd(char * buff, int buflen, char* mesg)
+int read_password(char * buff, int buflen, char* mesg)
{
int i = 0;
struct termios termio, oldtermio;
@@ -52,7 +52,7 @@ static char *get_nextcolon(const char *line, char delim)
return current_ptr;
}
-int update_passwd(char *filename, char* username, char* encrypted)
+int update_password(char *filename, char* username, char* encrypted)
{
char *filenamesfx = NULL, *namesfx = NULL;
char *shadow = NULL, *sfx = NULL;
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;
diff --git a/toys/passwd.c b/toys/passwd.c
index 501ce952..122cd942 100644
--- a/toys/passwd.c
+++ b/toys/passwd.c
@@ -144,12 +144,12 @@ static char *new_password(char *oldp, char *user)
{
char *newp = NULL;
- if(read_passwd(toybuf, sizeof(toybuf), "New password:"))
+ if(read_password(toybuf, sizeof(toybuf), "New password:"))
return NULL; //may be due to Ctrl-C
newp = xstrdup(toybuf);
strength_check(newp, oldp, user);
- if(read_passwd(toybuf, sizeof(toybuf), "Retype password:")) {
+ if(read_password(toybuf, sizeof(toybuf), "Retype password:")) {
free(newp);
return NULL; //may be due to Ctrl-C
}
@@ -210,7 +210,7 @@ void passwd_main(void)
if(myuid != 0) {
/*Validate user */
- if(read_passwd(toybuf, sizeof(toybuf), "Origial password:")) {
+ if(read_password(toybuf, sizeof(toybuf), "Origial password:")) {
if(!toys.optargs[0]) free(name);
return;
}
@@ -259,9 +259,9 @@ void passwd_main(void)
/*Update the passwd */
if(pw->pw_passwd[0] == 'x')
- ret = update_passwd("/etc/shadow", name, encrypted);
+ ret = update_password("/etc/shadow", name, encrypted);
else
- ret = update_passwd("/etc/passwd", name, encrypted);
+ ret = update_password("/etc/passwd", name, encrypted);
if((toys.optflags & (FLAG_l | FLAG_u | FLAG_d)))
free(encrypted);