From: Björn Jacke Date: Wed, 13 Jun 2012 17:28:06 +0000 (+0200) Subject: s3: fix build without ads support X-Git-Tag: samba-4.0.0beta2~191 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=43c56dc4255a7a6cbd176e6ae66a7652c6d72d2c;p=thirdparty%2Fsamba.git s3: fix build without ads support when we have no ads support we don't have the ads_get_sid_token symbol used in this unused code :-) Autobuild-User(master): Björn Jacke Autobuild-Date(master): Wed Jun 13 21:20:15 CEST 2012 on sn-devel-104 --- diff --git a/libgpo/gpo_util.c b/libgpo/gpo_util.c index ca529f8af6c..cfb4512aefc 100644 --- a/libgpo/gpo_util.c +++ b/libgpo/gpo_util.c @@ -838,13 +838,11 @@ ADS_STATUS gp_get_machine_token(ADS_STRUCT *ads, const char *dn, struct security_token **token) { +#ifdef HAVE_ADS struct security_token *ad_token = NULL; ADS_STATUS status; NTSTATUS ntstatus; -#ifndef HAVE_ADS - return ADS_ERROR_NT(NT_STATUS_NOT_SUPPORTED); -#endif status = ads_get_sid_token(ads, mem_ctx, dn, &ad_token); if (!ADS_ERR_OK(status)) { return status; @@ -855,4 +853,7 @@ ADS_STATUS gp_get_machine_token(ADS_STRUCT *ads, return ADS_ERROR_NT(ntstatus); } return ADS_SUCCESS; +#else + return ADS_ERROR_NT(NT_STATUS_NOT_SUPPORTED); +#endif }