]> granicus.if.org Git - shadow/commitdiff
* src/passwd.c: Fix a const issue.
authornekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Sat, 21 Aug 2010 19:55:46 +0000 (19:55 +0000)
committernekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Sat, 21 Aug 2010 19:55:46 +0000 (19:55 +0000)
* src/passwd.c: Avoid multi-statements lines.

ChangeLog
src/passwd.c

index 3e2bfb82b428482cd59b7f76bdfea99368d6a92c..815579cfeaac4623f7d064f677ec5cde023b2782 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2010-08-21  Nicolas François  <nicolas.francois@centraliens.net>
+
+       * src/passwd.c: Fix a const issue.
+       * src/passwd.c: Avoid multi-statements lines.
+
 2010-08-21  Nicolas François  <nicolas.francois@centraliens.net>
 
        * libmisc/copydir.c, lib/prototypes.h: Caller can choose not to
index ea51acd33a8e39e44a1fd0ac208bd3e93c418794..c677f08270be21cc2a4ac60a631b4759376a3d88 100644 (file)
@@ -221,7 +221,7 @@ static int new_password (const struct passwd *pw)
        int i;                  /* Counter for retries */
        int warned;
        int pass_max_len = -1;
-       char *method;
+       const char *method;
 
 #ifdef HAVE_LIBCRACK_HIST
        int HistUpdate (const char *, const char *);
@@ -261,7 +261,8 @@ static int new_password (const struct passwd *pw)
         * for strength, unless it is the root user. This provides an escape
         * for initial login passwords.
         */
-       if ((method = getdef_str ("ENCRYPT_METHOD")) == NULL) {
+       method = getdef_str ("ENCRYPT_METHOD");
+       if (NULL == method) {
                if (!getdef_bool ("MD5_CRYPT_ENAB")) {
                        pass_max_len = getdef_num ("PASS_MAX_LEN", 8);
                }