summaryrefslogtreecommitdiff
path: root/source3/configure.in
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2004-11-18 23:25:37 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:53:22 -0500
commitaa077290fc3792d18c2fbe052985aaeb1200683b (patch)
tree5a600b8cc8e856e4d3546d93372d7b49c526c147 /source3/configure.in
parent79f7373b3370b6629ac3aa309bc59c543599d0e9 (diff)
downloadsamba-aa077290fc3792d18c2fbe052985aaeb1200683b.tar.gz
samba-aa077290fc3792d18c2fbe052985aaeb1200683b.tar.bz2
samba-aa077290fc3792d18c2fbe052985aaeb1200683b.zip
r3868: Fix reverted logic of detecting HAVE_WRFILE_KEYTAB (Bugzilla 2059)
Guenther (This used to be commit 8d987d2f38005969798fe829f87c3ffc1d1e5edd)
Diffstat (limited to 'source3/configure.in')
-rw-r--r--source3/configure.in4
1 files changed, 1 insertions, 3 deletions
diff --git a/source3/configure.in b/source3/configure.in
index 327e6c9e89..f113450744 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -2983,9 +2983,7 @@ if test x"$with_ads_support" != x"no"; then
krb5_keytab keytab;
krb5_init_context(&context);
- if (krb5_kt_resolve(context, "WRFILE:api", &keytab))
- exit(0);
- exit(1);
+ return krb5_kt_resolve(context, "WRFILE:api", &keytab);
}],
samba_cv_HAVE_WRFILE_KEYTAB=yes,
samba_cv_HAVE_WRFILE_KEYTAB=no)])