s3: fix build without ads support
authorBjörn Jacke <bj@sernet.de>
Wed, 13 Jun 2012 17:28:06 +0000 (19:28 +0200)
committerBjoern Jacke <bj@sernet.de>
Wed, 13 Jun 2012 19:20:15 +0000 (21:20 +0200)
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 <bj@sernet.de>
Autobuild-Date(master): Wed Jun 13 21:20:15 CEST 2012 on sn-devel-104

libgpo/gpo_util.c

index ca529f8af6cd37ffa588e43396edc95f063527ef..cfb4512aefc2cf32146cd15242ea3590ca40d6ee 100644 (file)
@@ -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
 }