diff options
-rw-r--r-- | nsswitch/wbinfo.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/nsswitch/wbinfo.c b/nsswitch/wbinfo.c index 04478a75519..61acd1aa9e1 100644 --- a/nsswitch/wbinfo.c +++ b/nsswitch/wbinfo.c @@ -1222,8 +1222,12 @@ static bool wbinfo_lookupsid(const char *sid_str) /* Display response */ - d_printf("%s%c%s %d\n", - domain, winbind_separator(), name, type); + if (type == WBC_SID_NAME_DOMAIN) { + d_printf("%s %d\n", domain, type); + } else { + d_printf("%s%c%s %d\n", + domain, winbind_separator(), name, type); + } wbcFreeMemory(domain); wbcFreeMemory(name); |