diff options
author | green <green@FreeBSD.org> | 2000-08-24 17:51:16 +0000 |
---|---|---|
committer | green <green@FreeBSD.org> | 2000-08-24 17:51:16 +0000 |
commit | d0ebb9124f1b350926c9300bdddeac88992f3ead (patch) | |
tree | cef308522281e636e283c737121dedec440d41eb /lib/libcrypt | |
parent | f3d31d465280d599585a26de3181eaae9ee83f69 (diff) | |
download | FreeBSD-src-d0ebb9124f1b350926c9300bdddeac88992f3ead.zip FreeBSD-src-d0ebb9124f1b350926c9300bdddeac88992f3ead.tar.gz |
Still have to support libscrypt for now :( Add #defines to take DES
out for it.
Diffstat (limited to 'lib/libcrypt')
-rw-r--r-- | lib/libcrypt/crypt.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libcrypt/crypt.c b/lib/libcrypt/crypt.c index 7a61b42..abb1ef3 100644 --- a/lib/libcrypt/crypt.c +++ b/lib/libcrypt/crypt.c @@ -39,11 +39,13 @@ static const struct { char *(*const func)(const char *, const char *); const char *const magic; } crypt_types[] = { +#ifdef NONEXPORTABLE_CRYPT { "des", crypt_des, NULL }, +#endif { "md5", crypt_md5, |