Patch from Joshua Jackson, make md5 the default hash algorithm
authorGlenn L McGrath <bug1@ihug.co.nz>
Sat, 8 Feb 2003 23:20:02 +0000 (23:20 -0000)
committerGlenn L McGrath <bug1@ihug.co.nz>
Sat, 8 Feb 2003 23:20:02 +0000 (23:20 -0000)
loginutils/passwd.c

index c875621..e02cc4b 100644 (file)
@@ -23,10 +23,10 @@ static void set_filesize_limit(int blocks);
 
 int get_algo(char *a)
 {
-       int x = 0;                                      /* standart: DES */
+       int x = 1;                                      /* standard: MD5 */
 
-       if (strcasecmp(a, "md5") == 0)
-               x = 1;
+       if (strcasecmp(a, "des") == 0)
+               x = 0;
        return x;
 }