From bc47af50eb0896c108b7acc5323a897e27120252 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 27 Sep 2010 21:03:14 -0700 Subject: s4-kdc: added ifdef guards in kdc.h this prevents too much recursion in the compiler preprocessor --- source4/kdc/kdc.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source4/kdc') diff --git a/source4/kdc/kdc.h b/source4/kdc/kdc.h index 0551063aa7..6a2df1bc2c 100644 --- a/source4/kdc/kdc.h +++ b/source4/kdc/kdc.h @@ -20,6 +20,9 @@ along with this program. If not, see . */ +#ifndef _KDC_KDC_H +#define _KDC_KDC_H + #include "system/kerberos.h" #include "auth/kerberos/kerberos.h" #include @@ -50,3 +53,5 @@ bool kpasswdd_process(struct kdc_server *kdc, /* from hdb-samba4.c */ NTSTATUS hdb_samba4_create_kdc(struct samba_kdc_base_context *base_ctx, krb5_context context, struct HDB **db); + +#endif -- cgit