s3: fix build without ads support
authorBjörn Jacke <bj@sernet.de>
Sun, 1 Jul 2012 22:46:06 +0000 (00:46 +0200)
committerKarolin Seeger <kseeger@samba.org>
Fri, 6 Jul 2012 18:56:55 +0000 (20:56 +0200)
when we have no ads support we don't have the ads_get_sid_token symbol used in
this unused code :-)

this is the backport of 43c56dc4255a7a6cbd176e6ae66a7652c6d72d2c

Fix bug #8996 - build without ads support (e.g. plain solaris 8) broken.

libgpo/gpo_util.c

index 7a23b5cbd37c6ea33024df4ee581779ca0de416e..4e0c8ab05951f22ba2572e3a17868833e1305353 100644 (file)
@@ -840,6 +840,7 @@ ADS_STATUS gp_get_machine_token(ADS_STRUCT *ads,
                                const char *dn,
                                NT_USER_TOKEN **token)
 {
+#ifdef HAVE_ADS
        NT_USER_TOKEN *ad_token = NULL;
        ADS_STATUS status;
 #if _SAMBA_BUILD_ == 4
@@ -848,9 +849,6 @@ ADS_STATUS gp_get_machine_token(ADS_STRUCT *ads,
        NTSTATUS ntstatus;
 #endif
 
-#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;
@@ -866,4 +864,7 @@ ADS_STATUS gp_get_machine_token(ADS_STRUCT *ads,
        }
 #endif
        return ADS_SUCCESS;
+#else
+       return ADS_ERROR_NT(NT_STATUS_NOT_SUPPORTED);
+#endif
 }