svn commit: samba r6940 - in branches/SAMBA_3_0/source/utils: .

jerry at samba.org jerry at samba.org
Mon May 23 15:25:39 GMT 2005


Author: jerry
Date: 2005-05-23 15:25:38 +0000 (Mon, 23 May 2005)
New Revision: 6940

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=6940

Log:
fixing debug messages
Modified:
   branches/SAMBA_3_0/source/utils/net_ads.c


Changeset:
Modified: branches/SAMBA_3_0/source/utils/net_ads.c
===================================================================
--- branches/SAMBA_3_0/source/utils/net_ads.c	2005-05-23 07:12:38 UTC (rev 6939)
+++ branches/SAMBA_3_0/source/utils/net_ads.c	2005-05-23 15:25:38 UTC (rev 6940)
@@ -753,7 +753,7 @@
 	ads_msgfree(ads, res);
 
 	if (rc.error_type == ENUM_ADS_ERROR_LDAP && rc.err.rc == LDAP_NO_SUCH_OBJECT) {
-		d_printf("ads_join_realm: organizational unit %s does not exist (dn:%s)\n", 
+		d_printf("ads_join: organizational unit %s does not exist (dn:%s)\n", 
 			 org_unit, dn);
 		ads_destroy(&ads);
 		return -1;
@@ -761,14 +761,14 @@
 	free(dn);
 
 	if (!ADS_ERR_OK(rc)) {
-		d_printf("ads_join_realm: %s\n", ads_errstr(rc));
+		d_printf("ads_join: %s\n", ads_errstr(rc));
 		ads_destroy(&ads);
 		return -1;
 	}	
 
 	rc = ads_join_realm(ads, global_myname(), account_type, org_unit);
 	if (!ADS_ERR_OK(rc)) {
-		d_printf("ads_join_realm: %s\n", ads_errstr(rc));
+		d_printf("ads_join: %s\n", ads_errstr(rc));
 		ads_destroy(&ads);
 		return -1;
 	}



More information about the samba-cvs mailing list