diff options
author | Stefan Metzmacher <metze@samba.org> | 2012-01-20 16:52:03 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-01-20 18:44:10 +0100 |
commit | 018af56bf2da2f8445bbef2c8be2a65475b528ea (patch) | |
tree | ae277c295c3105e5c875c19d17a8404cdf046745 | |
parent | 3bfcf343cf451c25ed6873943ffc871a7abbb4c7 (diff) | |
download | samba-018af56bf2da2f8445bbef2c8be2a65475b528ea.tar.gz samba-018af56bf2da2f8445bbef2c8be2a65475b528ea.tar.bz2 samba-018af56bf2da2f8445bbef2c8be2a65475b528ea.zip |
s3:configure.in: fix the shell logic in krb5 checks
metze
-rw-r--r-- | source3/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index 3102ad0f41..a5b4487fa2 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -4519,7 +4519,7 @@ if test x"$with_ads_support" != x"no"; then if test x"$ac_cv_func_ext_gss_get_name_attribute" != x"yes" ; then if test x"$ac_cv_func_ext_gsskrb5_extract_authz_data_from_sec_context" != x"yes" -o \ - if test x"$ac_cv_func_ext_gss_inquire_sec_context_by_oid" != x"yes" + x"$ac_cv_func_ext_gss_inquire_sec_context_by_oid" != x"yes" then AC_MSG_WARN(need either gss_get_name_attribute or gsskrb5_extract_authz_data_from_sec_context and gss_inquire_sec_context_by_oid in -lgssapi for PAC support) use_ads=no |