From 2ee4dab98be8d90505ab141045d42fb69e932256 Mon Sep 17 00:00:00 2001 From: Johan Danielsson Date: Mon, 3 May 1999 09:25:45 +0000 Subject: [PATCH] HAVE_NETINFO_NI_H -> HAVE_NETINFO git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@6069 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/krb5/config_file.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/krb5/config_file.c b/lib/krb5/config_file.c index 36cc6281f..821197f99 100644 --- a/lib/krb5/config_file.c +++ b/lib/krb5/config_file.c @@ -43,7 +43,7 @@ RCSID("$Id$"); * Netinfo implementation from Luke Howard */ -#ifdef HAVE_NETINFO_NI_H +#ifdef HAVE_NETINFO #include static ni_status ni_proplist2binding(ni_proplist *pl, krb5_config_section **ret) @@ -180,7 +180,7 @@ krb5_config_parse_file (const char *fname, krb5_config_section **res) } return ret; } -#else /* !NETINFO_NI_H */ +#else /* !HAVE_NETINFO */ static int parse_section(char *p, krb5_config_section **s, krb5_config_section **res); @@ -335,7 +335,7 @@ krb5_config_parse_file (const char *fname, krb5_config_section **res) return 0; } -#endif /* HAVE_NETINFO_NI_H */ +#endif /* HAVE_NETINFO */ static void free_binding (krb5_context context, krb5_config_binding *b)