Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2014-08-06 23:24:57 +0400
committerCorinna Vinschen <corinna@vinschen.de>2014-08-06 23:24:57 +0400
commit552897570593cfcb8e6fe9522fbf44f5fbfa5184 (patch)
tree12ceb049fc2f6efea81cc8bdb7056b68f43d18d2 /winsup/utils
parent89d35a4833bd752aa2e3e813d830aa2afce5d0a6 (diff)
* passwd.c (usage): Rename DAYS to MINDAYS and MAXDAYS.
* utils.xml (passwd): Ditto.
Diffstat (limited to 'winsup/utils')
-rw-r--r--winsup/utils/ChangeLog5
-rw-r--r--winsup/utils/passwd.c33
-rw-r--r--winsup/utils/utils.xml4
3 files changed, 21 insertions, 21 deletions
diff --git a/winsup/utils/ChangeLog b/winsup/utils/ChangeLog
index 27bfc1f55..821ebf58a 100644
--- a/winsup/utils/ChangeLog
+++ b/winsup/utils/ChangeLog
@@ -1,3 +1,8 @@
+2014-08-06 Corinna Vinschen <corinna@vinschen.de>
+
+ * passwd.c (usage): Rename DAYS to MINDAYS and MAXDAYS.
+ * utils.xml (passwd): Ditto.
+
2014-07-29 Corinna Vinschen <corinna@vinschen.de>
* mkgroup.c (usage): Move info message that this /etc/group isn't really
diff --git a/winsup/utils/passwd.c b/winsup/utils/passwd.c
index 991935a2a..2046849a1 100644
--- a/winsup/utils/passwd.c
+++ b/winsup/utils/passwd.c
@@ -1,7 +1,7 @@
/* passwd.c: Changing passwords and managing account information
Copyright 1999, 2000, 2001, 2002, 2003, 2005, 2008, 2009, 2011, 2012,
- 2013 Red Hat, Inc.
+ 2013, 2014 Red Hat, Inc.
Written by Corinna Vinschen <corinna.vinschen@cityweb.de>
@@ -84,7 +84,7 @@ EvalRet (int ret, const char *user)
return 0;
case ERROR_ACCESS_DENIED:
- if (! user)
+ if (!user)
eprint (0, "You may not change password expiry information.");
else
eprint (0, "You may not change the password for %s.", user);
@@ -153,7 +153,7 @@ ChangePW (const char *user, const char *oldpwd, const char *pwd, int justcheck,
mbstowcs (name, user, UNLEN + 1);
mbstowcs (pass, pwd, 512);
- if (! oldpwd)
+ if (!oldpwd)
{
USER_INFO_1003 ui;
@@ -167,10 +167,8 @@ ChangePW (const char *user, const char *oldpwd, const char *pwd, int justcheck,
}
if (justcheck && ret != ERROR_INVALID_PASSWORD)
return 0;
- if (! EvalRet (ret, user) && ! justcheck)
- {
- eprint (0, "Password changed.");
- }
+ if (!EvalRet (ret, user) && !justcheck)
+ eprint (0, "Password changed.");
return ret;
}
@@ -193,7 +191,7 @@ PrintPW (PUSER_INFO_3 ui, LPCWSTR server)
(ui->usri3_password_expired) ? "yes\n" : "no\n");
printf ("Latest password change : %s", ctime(&t));
ret = NetUserModalsGet (server, 0, (void *) &mi);
- if (! ret)
+ if (!ret)
{
if (mi->usrmod0_max_passwd_age == TIMEQ_FOREVER)
mi->usrmod0_max_passwd_age = 0;
@@ -222,7 +220,7 @@ SetModals (int xarg, int narg, int iarg, int Larg, LPCWSTR server)
PUSER_MODALS_INFO_0 mi;
ret = NetUserModalsGet (server, 0, (void *) &mi);
- if (! ret)
+ if (!ret)
{
if (xarg == 0)
mi->usrmod0_max_passwd_age = TIMEQ_FOREVER;
@@ -277,8 +275,8 @@ usage (FILE * stream, int status)
"System operations:\n"
" -i, --inactive NUM set NUM of days before inactive accounts are disabled\n"
" (inactive accounts are those with expired passwords).\n"
- " -n, --minage DAYS set system minimum password age to DAYS days.\n"
- " -x, --maxage DAYS set system maximum password age to DAYS days.\n"
+ " -n, --minage MINDAYS set system minimum password age to MINDAYS days.\n"
+ " -x, --maxage MAXDAYS set system maximum password age to MAXDAYS days.\n"
" -L, --length LEN set system minimum password length to LEN.\n"
"\n"
"Other options:\n"
@@ -593,7 +591,7 @@ main (int argc, char **argv)
}
ui = GetPW (user, 1, server);
- if (! ui)
+ if (!ui)
return 1;
if (lopt || uopt || copt || Copt || eopt || Eopt || popt || Popt || Sopt)
@@ -636,9 +634,6 @@ main (int argc, char **argv)
if (!caller_is_admin () && !myself)
return eprint (0, "You may not change the password for %s.", user);
- eprint (0, "Enter the new password (minimum of 5, maximum of 8 characters).");
- eprint (0, "Please use a combination of upper and lower case letters and numbers.");
-
oldpwd[0] = '\0';
if (!caller_is_admin ())
{
@@ -652,11 +647,11 @@ main (int argc, char **argv)
strcpy (newpwd, getpass ("New password: "));
if (strcmp (newpwd, getpass ("Re-enter new password: ")))
eprint (0, "Password is not identical.");
- else if (! ChangePW (user, *oldpwd ? oldpwd : NULL, newpwd, 0, server))
+ else if (!ChangePW (user, *oldpwd ? oldpwd : NULL, newpwd, 0, server))
ret = 1;
- if (! ret && cnt < 2)
+ if (!ret && cnt < 2)
eprint (0, "Try again.");
}
- while (! ret && ++cnt < 3);
- return ! ret;
+ while (!ret && ++cnt < 3);
+ return !ret;
}
diff --git a/winsup/utils/utils.xml b/winsup/utils/utils.xml
index 2bb44b26b..42faa260d 100644
--- a/winsup/utils/utils.xml
+++ b/winsup/utils/utils.xml
@@ -1319,8 +1319,8 @@ User operations:
System operations:
-i, --inactive NUM set NUM of days before inactive accounts are disabled
(inactive accounts are those with expired passwords).
- -n, --minage DAYS set system minimum password age to DAYS days.
- -x, --maxage DAYS set system maximum password age to DAYS days.
+ -n, --minage MINDAYS set system minimum password age to MINDAYS days.
+ -x, --maxage MAXDAYS set system maximum password age to MAXDAYS days.
-L, --length LEN set system minimum password length to LEN.
Other options: