summaryrefslogtreecommitdiff
path: root/source3
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
commit3bdde6f8450f1f1f28dec38c0607ca2cb49d677b (patch)
treeaaa1b99890b35b485ee1d41860656f3cabc0bf0f /source3
parent4d0dcebb83324b9912b908cec3308a1c77da2230 (diff)
downloadsamba-3bdde6f8450f1f1f28dec38c0607ca2cb49d677b.tar.gz
samba-3bdde6f8450f1f1f28dec38c0607ca2cb49d677b.tar.bz2
samba-3bdde6f8450f1f1f28dec38c0607ca2cb49d677b.zip
Fix detection of elements in in-memory keytab code.
Jeremy. (This used to be commit c208ea44aa4cc8c0cde6aa02d98d87f36aed9589)
Diffstat (limited to 'source3')
-rw-r--r--source3/configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in
index 4d681c0d87..c692569e36 100644
--- a/source3/configure.in
+++ b/source3/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)])