diff options
| author | Peter Wemm <peter@FreeBSD.org> | 2000-12-28 11:23:01 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 2000-12-28 11:23:01 +0000 |
| commit | 65c10f6d334b4e6c9879de96fef092bb72afc758 (patch) | |
| tree | 55a81d0798e24c2e7cd6c0b9bf006518db552783 /lib/libcrypt | |
| parent | 9886bcdf9326929b650dc843802a25400f597365 (diff) | |
Notes
Diffstat (limited to 'lib/libcrypt')
| -rw-r--r-- | lib/libcrypt/crypt.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libcrypt/crypt.c b/lib/libcrypt/crypt.c index 989d74539de2..6f2846dad72b 100644 --- a/lib/libcrypt/crypt.c +++ b/lib/libcrypt/crypt.c @@ -42,11 +42,6 @@ static const struct { char *(*const func)(const char *, const char *); const char *const magic; } crypt_types[] = { - { - "md5", - crypt_md5, - "$1$" - }, #ifdef HAS_DES { "des", @@ -55,6 +50,11 @@ static const struct { }, #endif { + "md5", + crypt_md5, + "$1$" + }, + { NULL, NULL } |
