From f2ac351d6ef8d240f9e45f4df58b022052457d76 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 1 Aug 2008 17:24:24 +0200 Subject: 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) --- source4/kdc/kpasswdd.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source4/kdc/kpasswdd.c') 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; -- cgit