From: Timo Sirainen Date: Tue, 8 Apr 2003 16:59:52 +0000 (+0300) Subject: default is CRYPT, not DES (which doesn't even exist) X-Git-Tag: 1.1.alpha1~4767 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0484952dbf445504d9a0479a8bc8e0a8812f45ef;p=thirdparty%2Fdovecot%2Fcore.git default is CRYPT, not DES (which doesn't even exist) --HG-- branch : HEAD --- diff --git a/src/auth/passdb-passwd-file.c b/src/auth/passdb-passwd-file.c index 54001d55d6..42d471311a 100644 --- a/src/auth/passdb-passwd-file.c +++ b/src/auth/passdb-passwd-file.c @@ -28,7 +28,7 @@ passwd_file_verify_plain(struct auth_request *request, const char *password, crypted_pass = pu->password; scheme = password_get_scheme(&crypted_pass); - if (scheme == NULL) scheme = "DES"; + if (scheme == NULL) scheme = "CRYPT"; ret = password_verify(password, crypted_pass, scheme, request->user);