From dc9bec26418d607ca4b74d6ba8d77c83c90c7c2b Mon Sep 17 00:00:00 2001 From: Ralph Boehme Date: Wed, 16 Jan 2013 11:00:58 +0100 Subject: [PATCH] Fix conditional Fix conditional compilation checks introduced in 4f6fbcfc5f685bfd67a69e014eb18df4d984ae36. --- etc/afpd/status.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/etc/afpd/status.c b/etc/afpd/status.c index 33939abe..35e08849 100644 --- a/etc/afpd/status.c +++ b/etc/afpd/status.c @@ -442,8 +442,7 @@ static size_t status_directorynames(char *data, krb5_unparse_name(context, entry.principal, &principal); #ifdef HAVE_KRB5_FREE_KEYTAB_ENTRY_CONTENTS krb5_free_keytab_entry_contents(context, &entry); -#endif -#ifdef HAVE_KRB5_KT_FREE_ENTRY +#elif defined(HAVE_KRB5_KT_FREE_ENTRY) krb5_kt_free_entry(context, &entry); #endif append_directoryname(&data, -- 2.39.2