diff options
author | Jeremy Allison <jra@samba.org> | 2003-12-11 20:54:55 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-12-11 20:54:55 +0000 |
commit | 525f7255f4c8ce478b3e5bcc5078c85482213016 (patch) | |
tree | ae9553a79d932800b49e0b96f2303ede79c5b4f9 /source3 | |
parent | 0b88121c7898e85837f32c98b445c9c4863b3fa8 (diff) | |
download | samba-525f7255f4c8ce478b3e5bcc5078c85482213016.tar.gz samba-525f7255f4c8ce478b3e5bcc5078c85482213016.tar.bz2 samba-525f7255f4c8ce478b3e5bcc5078c85482213016.zip |
Correctly detect in-memory krb5 keytab support. Fix for bug #863 from
gschafer@zip.com.au (Greg Schafer).
Jeremy.
(This used to be commit 25d91f8d8c4e3bd8237716052b53350587ffb8dc)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/configure.in b/source3/configure.in index a5db46bc18..62bba1ea13 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -2728,8 +2728,8 @@ if test x"$with_ads_support" != x"no"; then exit(0); exit(1); }], - samba_cv_HAVE_MEMORY_KEYTAB=no, - samba_cv_HAVE_MEMORY_KEYTAB=yes)]) + samba_cv_HAVE_MEMORY_KEYTAB=yes, + samba_cv_HAVE_MEMORY_KEYTAB=no)]) if test x"$samba_cv_HAVE_MEMORY_KEYTAB" = x"yes"; then AC_DEFINE(HAVE_MEMORY_KEYTAB,1, |