summaryrefslogtreecommitdiffstats
path: root/src/lib/crypto/krb
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>2009-10-18 11:55:53 +0000
committerEzra Peisach <epeisach@mit.edu>2009-10-18 11:55:53 +0000
commit8e8b53857d74edd02435f6a0c449a405fd51f8e7 (patch)
tree08cfe205c5b54f0ee0966448d9081f221ce9ac4f /src/lib/crypto/krb
parent42d34bd16ca381ea161d00cecd41a8dc5b47ee3b (diff)
downloadkrb5-8e8b53857d74edd02435f6a0c449a405fd51f8e7.tar.gz
krb5-8e8b53857d74edd02435f6a0c449a405fd51f8e7.tar.xz
krb5-8e8b53857d74edd02435f6a0c449a405fd51f8e7.zip
Include des_int.h for mit_des_fixup_key_parity prototype. Adjust Makefile.in
to find the proper header. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@22912 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/crypto/krb')
-rw-r--r--src/lib/crypto/krb/rand2key/Makefile.in2
-rw-r--r--src/lib/crypto/krb/rand2key/des_rand2key.c1
2 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/crypto/krb/rand2key/Makefile.in b/src/lib/crypto/krb/rand2key/Makefile.in
index d868fc922..ad2ed1f2e 100644
--- a/src/lib/crypto/krb/rand2key/Makefile.in
+++ b/src/lib/crypto/krb/rand2key/Makefile.in
@@ -2,7 +2,7 @@ thisconfigdir=../../../..
myfulldir=lib/crypto/krb/rand2key
mydir=lib/crypto/krb/rand2key
BUILDTOP=$(REL)..$(S)..$(S)..$(S)..
-LOCALINCLUDES = -I$(srcdir)/.
+LOCALINCLUDES = -I$(srcdir)/. -I$(srcdir)/../../@CRYPTO_IMPL@/des
DEFS=
##DOS##BUILDTOP = ..\..\..\..
diff --git a/src/lib/crypto/krb/rand2key/des_rand2key.c b/src/lib/crypto/krb/rand2key/des_rand2key.c
index 47db2c39f..9af247702 100644
--- a/src/lib/crypto/krb/rand2key/des_rand2key.c
+++ b/src/lib/crypto/krb/rand2key/des_rand2key.c
@@ -26,6 +26,7 @@
#include "rand2key.h"
+#include "des_int.h"
krb5_error_code
krb5int_des_make_key(const krb5_data *randombits, krb5_keyblock *key)