From: Kai Blin Date: Thu, 12 Jun 2008 09:50:09 +0000 (+0200) Subject: net: Fix net_ads.c build for the HAVE_ADS == 0 case. X-Git-Tag: samba-3.3.0pre1~935 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7f52998f5461ed7d976faa2254464336dcf73c02;p=thirdparty%2Fsamba.git net: Fix net_ads.c build for the HAVE_ADS == 0 case. Thanks to Karolin for catching this one. --- diff --git a/source/utils/net_ads.c b/source/utils/net_ads.c index f945bfaafb5..8c39fa955fe 100644 --- a/source/utils/net_ads.c +++ b/source/utils/net_ads.c @@ -2576,7 +2576,7 @@ int net_ads_check_our_domain(struct net_context *c) int net_ads(struct net_context *c, int argc, const char **argv) { - return net_ads_usage(c, argc, argv); + return net_ads_noads(); } #endif /* WITH_ADS */