svn commit: samba r12131 - branches/SAMBA_3_0/source/rpcclient trunk/source/rpcclient

gd at samba.org gd at samba.org
Thu Dec 8 16:34:57 GMT 2005


Author: gd
Date: 2005-12-08 16:34:57 +0000 (Thu, 08 Dec 2005)
New Revision: 12131

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

Log:
Fix it really, this time :)

Guenther

Modified:
   branches/SAMBA_3_0/source/rpcclient/cmd_lsarpc.c
   trunk/source/rpcclient/cmd_lsarpc.c


Changeset:
Modified: branches/SAMBA_3_0/source/rpcclient/cmd_lsarpc.c
===================================================================
--- branches/SAMBA_3_0/source/rpcclient/cmd_lsarpc.c	2005-12-08 16:25:33 UTC (rev 12130)
+++ branches/SAMBA_3_0/source/rpcclient/cmd_lsarpc.c	2005-12-08 16:34:57 UTC (rev 12131)
@@ -130,8 +130,8 @@
 		printf("forest name is %s\n", forest_name);
 
 	if (info_class == 12) {
-		printf("domain GUID is %s\n");
-		smb_uuid_string_static(*dom_guid);
+		printf("domain GUID is %s\n", 
+		smb_uuid_string_static(*dom_guid));
 	}
 
 	rpccli_lsa_close(cli, mem_ctx, &pol);

Modified: trunk/source/rpcclient/cmd_lsarpc.c
===================================================================
--- trunk/source/rpcclient/cmd_lsarpc.c	2005-12-08 16:25:33 UTC (rev 12130)
+++ trunk/source/rpcclient/cmd_lsarpc.c	2005-12-08 16:34:57 UTC (rev 12131)
@@ -130,8 +130,8 @@
 		printf("forest name is %s\n", forest_name);
 
 	if (info_class == 12) {
-		printf("domain GUID is %s\n");
-		smb_uuid_string_static(*dom_guid);
+		printf("domain GUID is %s\n", 
+		smb_uuid_string_static(*dom_guid));
 	}
 
 	rpccli_lsa_close(cli, mem_ctx, &pol);



More information about the samba-cvs mailing list