summaryrefslogtreecommitdiff
path: root/source4/kdc/kpasswdd.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2008-08-01 17:24:24 +0200
committerStefan Metzmacher <metze@samba.org>2008-08-01 17:54:34 +0200
commitf2ac351d6ef8d240f9e45f4df58b022052457d76 (patch)
treed3dd6ee15fe4f6bd03a9d43be16c98d543633666 /source4/kdc/kpasswdd.c
parent9cc663af6e234e1938ac6a4cfce6b72b837440e5 (diff)
downloadsamba-f2ac351d6ef8d240f9e45f4df58b022052457d76.tar.gz
samba-f2ac351d6ef8d240f9e45f4df58b022052457d76.tar.bz2
samba-f2ac351d6ef8d240f9e45f4df58b022052457d76.zip
kdc: use mostly only public kerberos headers
We shoule avoid using the private heimdal function _krb5_principalname2krb5_principal() metze (This used to be commit 10db07c69addce6e90851fb55738d5f9e142946b)
Diffstat (limited to 'source4/kdc/kpasswdd.c')
-rw-r--r--source4/kdc/kpasswdd.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source4/kdc/kpasswdd.c b/source4/kdc/kpasswdd.c
index b42769c6dc..55dadd9a7e 100644
--- a/source4/kdc/kpasswdd.c
+++ b/source4/kdc/kpasswdd.c
@@ -27,8 +27,6 @@
#include "system/network.h"
#include "lib/util/dlinklist.h"
#include "lib/ldb/include/ldb.h"
-#include "heimdal/lib/krb5/krb5_locl.h"
-#include "heimdal/lib/krb5/krb5-private.h"
#include "auth/gensec/gensec.h"
#include "auth/credentials/credentials.h"
#include "auth/credentials/credentials_krb5.h"
@@ -40,6 +38,10 @@
#include "param/param.h"
#include "kdc/kdc.h"
+/* TODO: remove this */
+#include "heimdal/lib/krb5/krb5_locl.h"
+#include "heimdal/lib/krb5/krb5-private.h"
+
/* hold information about one kdc socket */
struct kpasswd_socket {
struct socket_context *sock;