diff options
author | Gerald Carter <jerry@samba.org> | 2004-01-05 20:24:21 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2004-01-05 20:24:21 +0000 |
commit | a9f8b0dccba776e43814971b6dc8901b1b719186 (patch) | |
tree | 20bb890d52f8889a160dd1487bb0d65b4b16281c /source3/configure.in | |
parent | b397269f1b981df735bb98eec94adb142de0a868 (diff) | |
download | samba-a9f8b0dccba776e43814971b6dc8901b1b719186.tar.gz samba-a9f8b0dccba776e43814971b6dc8901b1b719186.tar.bz2 samba-a9f8b0dccba776e43814971b6dc8901b1b719186.zip |
fix inverted check using krb5_kt_resolve() and HAVE_MEMORY_KEYTAB; bug 912
(This used to be commit cca2afecd505881412df65c21c0389a0079cf023)
Diffstat (limited to 'source3/configure.in')
-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 9b87aa6296..c5cf9f1dbb 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -2706,8 +2706,8 @@ if test x"$with_ads_support" != x"no"; then krb5_init_context(&context); if (krb5_kt_resolve(context, "MEMORY:", &keytab)) - exit(0); - exit(1); + exit(1); + exit(0); }], samba_cv_HAVE_MEMORY_KEYTAB=yes, samba_cv_HAVE_MEMORY_KEYTAB=no)]) |