diff options
author | Günther Deschner <gd@samba.org> | 2006-05-13 01:29:04 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:17:01 -0500 |
commit | 453e4b50aae52089eb2c2ae6a2abc3b48425ee55 (patch) | |
tree | 34b0d97e2f94c4488584f7c3b600bad395064b67 /source3/utils | |
parent | bae13fd8c834f79cf42faae0bc963ac96d505baf (diff) | |
download | samba-453e4b50aae52089eb2c2ae6a2abc3b48425ee55.tar.gz samba-453e4b50aae52089eb2c2ae6a2abc3b48425ee55.tar.bz2 samba-453e4b50aae52089eb2c2ae6a2abc3b48425ee55.zip |
r15559: Smaller fixes for the new cldap code:
* replace printf to stderr with DEBUG statements as they get printed in
daemons
* "net ads lookup" return code
Guenther
(This used to be commit 8dd925c5fbfcbe711c596d08e8eadc19607d5492)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/net_ads.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/utils/net_ads.c b/source3/utils/net_ads.c index a514b6c4e6..e75090449d 100644 --- a/source3/utils/net_ads.c +++ b/source3/utils/net_ads.c @@ -83,7 +83,6 @@ int net_ads_usage(int argc, const char **argv) */ static int net_ads_cldap_netlogon(ADS_STRUCT *ads) { - int ret; struct cldap_netlogon_reply reply; if ( !ads_cldap_netlogon( inet_ntoa(ads->ldap_ip), ads->server.realm, &reply ) ) { @@ -147,7 +146,7 @@ static int net_ads_cldap_netlogon(ADS_STRUCT *ads) d_printf("LMNT Token: %.2x\n", reply.lmnt_token); d_printf("LM20 Token: %.2x\n", reply.lm20_token); - return ret; + return 0; } |