From 1487a72da2d618c578fdf49bd9cf268c2ae3c26c Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Wed, 24 Aug 2005 18:13:04 +0000 Subject: r9593: fix enumerated group name (should be full name (i.e. mapped name) and not unix name) (This used to be commit 8928575abde51f04d0596420a85381f697b66c58) --- source3/rpc_parse/parse_samr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/rpc_parse/parse_samr.c b/source3/rpc_parse/parse_samr.c index 6b0193c6e4..45a1f0e23c 100644 --- a/source3/rpc_parse/parse_samr.c +++ b/source3/rpc_parse/parse_samr.c @@ -1720,7 +1720,7 @@ NTSTATUS init_sam_dispinfo_3(TALLOC_CTX *ctx, SAM_DISPINFO_3 **sam, 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); -- cgit