svn commit: samba r9593 - branches/SAMBA_3_0/source/rpc_parse trunk/source/rpc_parse

jerry at samba.org jerry at samba.org
Wed Aug 24 18:13:05 GMT 2005


Author: jerry
Date: 2005-08-24 18:13:04 +0000 (Wed, 24 Aug 2005)
New Revision: 9593

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

Log:
fix enumerated group name (should be full name (i.e. mapped name) and not unix name)
Modified:
   branches/SAMBA_3_0/source/rpc_parse/parse_samr.c
   trunk/source/rpc_parse/parse_samr.c


Changeset:
Modified: branches/SAMBA_3_0/source/rpc_parse/parse_samr.c
===================================================================
--- branches/SAMBA_3_0/source/rpc_parse/parse_samr.c	2005-08-24 17:30:15 UTC (rev 9592)
+++ branches/SAMBA_3_0/source/rpc_parse/parse_samr.c	2005-08-24 18:13:04 UTC (rev 9593)
@@ -1720,7 +1720,7 @@
 		DEBUG(11, ("init_sam_dispinfo_3: entry: %d\n",i));
 
 		init_unistr2(&(*sam)->str[i].uni_grp_name,
-			     entries[i].account_name, UNI_FLAGS_NONE);
+			     entries[i].fullname, UNI_FLAGS_NONE);
 		init_unistr2(&(*sam)->str[i].uni_grp_desc,
 			     entries[i].description, UNI_FLAGS_NONE);
 

Modified: trunk/source/rpc_parse/parse_samr.c
===================================================================
--- trunk/source/rpc_parse/parse_samr.c	2005-08-24 17:30:15 UTC (rev 9592)
+++ trunk/source/rpc_parse/parse_samr.c	2005-08-24 18:13:04 UTC (rev 9593)
@@ -1718,7 +1718,7 @@
 		DEBUG(11, ("init_sam_dispinfo_3: entry: %d\n",i));
 
 		init_unistr2(&(*sam)->str[i].uni_grp_name,
-			     entries[i].account_name, UNI_FLAGS_NONE);
+			     entries[i].fullname, UNI_FLAGS_NONE);
 		init_unistr2(&(*sam)->str[i].uni_grp_desc,
 			     entries[i].description, UNI_FLAGS_NONE);
 



More information about the samba-cvs mailing list