diff options
| author | Tim Potter <tpot@samba.org> | 2002-03-22 05:43:08 +0000 |
|---|---|---|
| committer | Tim Potter <tpot@samba.org> | 2002-03-22 05:43:08 +0000 |
| commit | 15bc8b14714f07fa82a9b0ec9f5817e00ce18005 (patch) | |
| tree | 4905bd3ae4aa56760097f4e4527e2438b5fb24d2 /source3 | |
| parent | b47fcfca3e58bb9a7f914f87706ae82bef979f7d (diff) | |
Make debug statment less confusing.
(This used to be commit 301a7f56dd3e7160147da656ff521671d04fe291)
Diffstat (limited to 'source3')
| -rw-r--r-- | source3/nsswitch/winbindd_sid.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/source3/nsswitch/winbindd_sid.c b/source3/nsswitch/winbindd_sid.c index 3131e7b196..a41bf75916 100644 --- a/source3/nsswitch/winbindd_sid.c +++ b/source3/nsswitch/winbindd_sid.c @@ -76,8 +76,11 @@ enum winbindd_result winbindd_lookupname(struct winbindd_cli_state *state) char *name_domain, *name_user; DOM_SID sid; struct winbindd_domain *domain; - DEBUG(3, ("[%5d]: lookupname [%s]\\[%s]\n", state->pid, - state->request.data.name.dom_name, state->request.data.name.name)); + + DEBUG(3, ("[%5d]: lookupname %s%s%s\n", state->pid, + state->request.data.name.dom_name, + lp_winbind_separator(), + state->request.data.name.name)); name_domain = state->request.data.name.dom_name; name_user = state->request.data.name.name; |
