diff options
author | Jeremy Allison <jra@samba.org> | 2004-11-18 21:22:24 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:53:21 -0500 |
commit | d956222083768df5f6d9f6c45f39d70232b7da8f (patch) | |
tree | 26d7e45b75ec0e41a5a82d07eead0e10a4f480f4 | |
parent | 2f167e909e08aac3b5ef7e20fe1b264f3c90382f (diff) | |
download | samba-d956222083768df5f6d9f6c45f39d70232b7da8f.tar.gz samba-d956222083768df5f6d9f6c45f39d70232b7da8f.tar.bz2 samba-d956222083768df5f6d9f6c45f39d70232b7da8f.zip |
r3862: Fix from Lars Müller <lmuelle@suse.de>, check for HAVE_WRFILE_KEYTAB
was inverted.
Jeremy.
(This used to be commit 6a9799806874619c471548b8ff0b3dc36788f81a)
-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 7e97ed091f..327e6c9e89 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -2987,8 +2987,8 @@ if test x"$with_ads_support" != x"no"; then exit(0); exit(1); }], - samba_cv_HAVE_WRFILE_KEYTAB=no, - samba_cv_HAVE_WRFILE_KEYTAB=yes)]) + samba_cv_HAVE_WRFILE_KEYTAB=yes, + samba_cv_HAVE_WRFILE_KEYTAB=no)]) if test x"$samba_cv_HAVE_WRFILE_KEYTAB" = x"yes"; then AC_DEFINE(HAVE_WRFILE_KEYTAB,1, |