diff options
author | markm <markm@FreeBSD.org> | 2000-02-24 20:21:16 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2000-02-24 20:21:16 +0000 |
commit | 881ec5054829d43b71f6937e98e4891f52d23e3c (patch) | |
tree | b6ad7f6252047802bf28a6c315c2849e8d660849 /crypto/kerberosIV/lib | |
parent | 443e3df9fc8fe20ccfddd689f7dc254ad0194b75 (diff) | |
download | FreeBSD-src-881ec5054829d43b71f6937e98e4891f52d23e3c.zip FreeBSD-src-881ec5054829d43b71f6937e98e4891f52d23e3c.tar.gz |
Use libcrypto instead of libdes.
Diffstat (limited to 'crypto/kerberosIV/lib')
-rw-r--r-- | crypto/kerberosIV/lib/kadm/kadm_locl.h | 3 | ||||
-rw-r--r-- | crypto/kerberosIV/lib/krb/krb.h | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/crypto/kerberosIV/lib/kadm/kadm_locl.h b/crypto/kerberosIV/lib/kadm/kadm_locl.h index 709a224..6740709 100644 --- a/crypto/kerberosIV/lib/kadm/kadm_locl.h +++ b/crypto/kerberosIV/lib/kadm/kadm_locl.h @@ -32,6 +32,7 @@ */ /* $Id: kadm_locl.h,v 1.12 1999/12/02 16:58:39 joda Exp $ */ +/* $FreeBSD$ */ #include "config.h" #include "protos.h" @@ -69,7 +70,7 @@ struct hostent *gethostbyname(const char *); #include <roken.h> -#include <des.h> +#include <openssl/des.h> #include <krb.h> #include <krb_err.h> #include <krb_db.h> diff --git a/crypto/kerberosIV/lib/krb/krb.h b/crypto/kerberosIV/lib/krb/krb.h index 745b154..6f7386f 100644 --- a/crypto/kerberosIV/lib/krb/krb.h +++ b/crypto/kerberosIV/lib/krb/krb.h @@ -48,7 +48,7 @@ __BEGIN_DECLS #if !defined(NOPROTO) && !defined(__STDC__) #define NOPROTO #endif -#include <des.h> +#include <openssl/des.h> /* CNS compatibility ahead! */ #ifndef KRB_INT32 |