1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

Show the sid type in name->sid translatons in a way that can be easily

understood by humans.

Andrew Bartlett
This commit is contained in:
Andrew Bartlett 0001-01-01 00:00:00 +00:00
parent 379368b0be
commit 3d91b0a006

View File

@ -482,7 +482,7 @@ static BOOL wbinfo_lookupname(char *name)
/* Display response */
d_printf("%s %d\n", response.data.sid.sid, response.data.sid.type);
d_printf("%s %s (%d)\n", response.data.sid.sid, sid_type_lookup(response.data.sid.type), response.data.sid.type);
return True;
}