diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-08-25 16:12:42 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-08-26 12:30:03 +0200 |
commit | d3265b01e5e8b7dea19ac238bafd756165613f0c (patch) | |
tree | 70372adee2811d1fa1ab68f5f829e6d22d56c2fb | |
parent | cec74e9b00ae849916ed01674996711eabf6b220 (diff) | |
download | samba-d3265b01e5e8b7dea19ac238bafd756165613f0c.tar.gz samba-d3265b01e5e8b7dea19ac238bafd756165613f0c.tar.bz2 samba-d3265b01e5e8b7dea19ac238bafd756165613f0c.zip |
kdc: move references to heimdal internals into heimdal_build/kpasswd-glue.h
metze
(This used to be commit 65057f17b0d9e83f1b775afdeb7ea91ce0e52cd1)
-rw-r--r-- | source4/heimdal_build/kpasswdd-glue.h | 3 | ||||
-rw-r--r-- | source4/kdc/kpasswdd.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/source4/heimdal_build/kpasswdd-glue.h b/source4/heimdal_build/kpasswdd-glue.h new file mode 100644 index 0000000000..2a7c3c0690 --- /dev/null +++ b/source4/heimdal_build/kpasswdd-glue.h @@ -0,0 +1,3 @@ +/* TODO: remove this file */ +#include "heimdal/lib/hcrypto/aes.h" +#include "heimdal/lib/krb5/krb5-private.h" diff --git a/source4/kdc/kpasswdd.c b/source4/kdc/kpasswdd.c index 065777fc66..603332e69e 100644 --- a/source4/kdc/kpasswdd.c +++ b/source4/kdc/kpasswdd.c @@ -40,8 +40,7 @@ /* TODO: remove all SAMBA4_INTERNAL_HEIMDAL stuff from this file */ #ifdef SAMBA4_INTERNAL_HEIMDAL -#include "heimdal/lib/hcrypto/aes.h" -#include "heimdal/lib/krb5/krb5-private.h" +#include "heimdal_build/kpasswdd-glue.h" #endif /* hold information about one kdc socket */ |