diff options
Diffstat (limited to 'crypto/heimdal/kdc/headers.h')
-rw-r--r-- | crypto/heimdal/kdc/headers.h | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/crypto/heimdal/kdc/headers.h b/crypto/heimdal/kdc/headers.h index c4c8b5e..118e0d8 100644 --- a/crypto/heimdal/kdc/headers.h +++ b/crypto/heimdal/kdc/headers.h @@ -32,7 +32,8 @@ */ /* - * $Id: headers.h,v 1.10 2000/08/04 11:21:38 joda Exp $ + * $Id: headers.h,v 1.6 2000/02/06 06:04:36 assar Exp $ + * $FreeBSD$ */ #ifndef __HEADERS_H__ @@ -74,17 +75,13 @@ #ifdef HAVE_NETDB_H #include <netdb.h> #endif -#ifdef HAVE_UTIL_H -#include <util.h> -#endif #include <err.h> #include <roken.h> #include <getarg.h> #include <base64.h> #include <parse_units.h> -#include <des.h> +#include <openssl/des.h> #include <krb5.h> -#include <krb5_locl.h> #include <hdb.h> #include <hdb_err.h> #include <der.h> /* copy_octet_string */ @@ -96,10 +93,6 @@ #include <krb_db.h> #endif -#undef ALLOC #define ALLOC(X) ((X) = malloc(sizeof(*(X)))) -#undef ALLOC_SEQ -#define ALLOC_SEQ(X, N) do { (X)->len = (N); \ -(X)->val = calloc((X)->len, sizeof(*(X)->val)); } while(0) #endif /* __HEADERS_H__ */ |