diff options
-rw-r--r-- | WHATSNEW.txt | 1 | ||||
-rw-r--r-- | source3/winbindd/winbindd_group.c | 6 |
2 files changed, 5 insertions, 2 deletions
diff --git a/WHATSNEW.txt b/WHATSNEW.txt index 001f0f8d70..364b3fea21 100644 --- a/WHATSNEW.txt +++ b/WHATSNEW.txt @@ -292,6 +292,7 @@ o Volker Lendecke <vl@samba.org> * Make winbind use NetSamLogonEx when possible. * Merge fixes in the 3-0-ctdb cluster code. * Fix a segfault in snprintf replacement code. + * Fix a regression for wbinfo --group-info if winbind separator is set o Derrell Lipman <derrell@samba.org> diff --git a/source3/winbindd/winbindd_group.c b/source3/winbindd/winbindd_group.c index d5d3accec1..63fde9f495 100644 --- a/source3/winbindd/winbindd_group.c +++ b/source3/winbindd/winbindd_group.c @@ -806,8 +806,10 @@ static void getgrsid_lookupsid_recv( void *private_data, bool success, } if ( (s->group_name = talloc_asprintf( s->state->mem_ctx, - "%s\\%s", - dom_name, name )) == NULL ) + "%s%c%s", + dom_name, + *lp_winbind_separator(), + name)) == NULL ) { DEBUG(1, ("getgrsid_lookupsid_recv: talloc_asprintf() Failed!\n")); request_error(s->state); |