diff options
author | Michael Adam <obnox@samba.org> | 2007-12-05 17:14:12 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2007-12-05 17:14:55 +0100 |
commit | bf13b9f180caf95d88a6c282cbd12c73a9cbe338 (patch) | |
tree | 8f6e68dea773a16b1ddcf9c482c9b4c1a4adb43b | |
parent | b2ca9253e9a1e394a5fc1c550d1b30e4853dc43b (diff) | |
download | samba-bf13b9f180caf95d88a6c282cbd12c73a9cbe338.tar.gz samba-bf13b9f180caf95d88a6c282cbd12c73a9cbe338.tar.bz2 samba-bf13b9f180caf95d88a6c282cbd12c73a9cbe338.zip |
Fix a debug message (missing newline).
Michael
(This used to be commit 2a1755327f6cef6c969308e9ebcb238048535533)
-rw-r--r-- | source3/winbindd/idmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/idmap.c b/source3/winbindd/idmap.c index 6756c2a23b..d2c13ab8b7 100644 --- a/source3/winbindd/idmap.c +++ b/source3/winbindd/idmap.c @@ -920,7 +920,7 @@ static NTSTATUS idmap_can_map(const struct id_map *map, if ( (dom = find_idmap_domain_from_sid( map->sid )) == NULL ) { /* huh, couldn't find a suitable domain, * let's just leave it unmapped */ - DEBUG(10, ("Could not find idmap backend for SID %s", + DEBUG(10, ("Could not find idmap backend for SID %s\n", sid_string_static(map->sid))); return NT_STATUS_NO_SUCH_DOMAIN; } |