diff options
-rw-r--r-- | loginutils/passwd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/loginutils/passwd.c b/loginutils/passwd.c index c8756211a..e02cc4b81 100644 --- a/loginutils/passwd.c +++ b/loginutils/passwd.c | |||
@@ -23,10 +23,10 @@ static void set_filesize_limit(int blocks); | |||
23 | 23 | ||
24 | int get_algo(char *a) | 24 | int get_algo(char *a) |
25 | { | 25 | { |
26 | int x = 0; /* standart: DES */ | 26 | int x = 1; /* standard: MD5 */ |
27 | 27 | ||
28 | if (strcasecmp(a, "md5") == 0) | 28 | if (strcasecmp(a, "des") == 0) |
29 | x = 1; | 29 | x = 0; |
30 | return x; | 30 | return x; |
31 | } | 31 | } |
32 | 32 | ||