diff options
author | Gerald Carter <jerry@samba.org> | 2005-03-22 15:12:50 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:56:11 -0500 |
commit | 4b831f8e16d305666b0f2b018c35f5427efc21cc (patch) | |
tree | ce306794ce0ca21f7a35e489a01d8738a594e967 /source3/libads | |
parent | dbd5c968d7b90576fb63dc574e02bbb89a5dcd74 (diff) | |
download | samba-4b831f8e16d305666b0f2b018c35f5427efc21cc.tar.gz samba-4b831f8e16d305666b0f2b018c35f5427efc21cc.tar.bz2 samba-4b831f8e16d305666b0f2b018c35f5427efc21cc.zip |
r5952: BUG 2469: patch from Jason Mader to cleanup compiler warning when not using krb5
(This used to be commit 19a639ac468237b22f16d917c0150fbf10c9623e)
Diffstat (limited to 'source3/libads')
-rw-r--r-- | source3/libads/sasl.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/libads/sasl.c b/source3/libads/sasl.c index 97ba9c9286..0164b0c740 100644 --- a/source3/libads/sasl.c +++ b/source3/libads/sasl.c @@ -173,7 +173,9 @@ static ADS_STATUS ads_sasl_spnego_bind(ADS_STRUCT *ads) DATA_BLOB blob; char *principal = NULL; char *OIDs[ASN1_MAX_OIDS]; +#ifdef HAVE_KRB5 BOOL got_kerberos_mechanism = False; +#endif rc = ldap_sasl_bind_s(ads->ld, NULL, "GSS-SPNEGO", NULL, NULL, NULL, &scred); @@ -202,10 +204,12 @@ static ADS_STATUS ads_sasl_spnego_bind(ADS_STRUCT *ads) /* make sure the server understands kerberos */ for (i=0;OIDs[i];i++) { DEBUG(3,("ads_sasl_spnego_bind: got OID=%s\n", OIDs[i])); +#ifdef HAVE_KRB5 if (strcmp(OIDs[i], OID_KERBEROS5_OLD) == 0 || strcmp(OIDs[i], OID_KERBEROS5) == 0) { got_kerberos_mechanism = True; } +#endif free(OIDs[i]); } DEBUG(3,("ads_sasl_spnego_bind: got server principal name =%s\n", principal)); |