summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2003-12-12 20:15:47 +0000
committerJeremy Allison <jra@samba.org>2003-12-12 20:15:47 +0000
commitc208ea44aa4cc8c0cde6aa02d98d87f36aed9589 (patch)
treef65b8869221df17aee78065314f6b52bf99a83eb
parent824218d086d90f6fcf3789e8e87f047e2da55c25 (diff)
downloadsamba-c208ea44aa4cc8c0cde6aa02d98d87f36aed9589.tar.gz
Fix detection of elements in in-memory keytab code.
Jeremy.
-rw-r--r--source/configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/configure.in b/source/configure.in
index 4d681c0d873..c692569e363 100644
--- a/source/configure.in
+++ b/source/configure.in
@@ -2720,7 +2720,7 @@ if test x"$with_ads_support" != x"no"; then
AC_CACHE_CHECK([for key in krb5_keytab_entry],
samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEY,[
AC_TRY_COMPILE([#include <krb5.h>],
- [krb5_keytab_entry entry; entry.key = NULL;],
+ [krb5_keytab_entry entry; krb5_keyblock e; entry.key = e;],
samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEY=yes,
samba_cv_HAVE_KRB5_KEYTAB_ENTRY_KEY=no)])