diff options
author | Volker Lendecke <vl@samba.org> | 2011-09-08 13:15:21 +0200 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2011-09-08 15:08:43 +0200 |
commit | ab2ca882e1bf0674bd06fd4009caedcca2410b73 (patch) | |
tree | 1a903b12d5ea8dc97b5fc5504a4be9eca06d09bb | |
parent | 12f0624a85c8fe1d05f10c9c08bdbf7fcf0430a0 (diff) | |
download | samba-ab2ca882e1bf0674bd06fd4009caedcca2410b73.tar.gz samba-ab2ca882e1bf0674bd06fd4009caedcca2410b73.tar.bz2 samba-ab2ca882e1bf0674bd06fd4009caedcca2410b73.zip |
s3: Fix a debug message
Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Thu Sep 8 15:08:43 CEST 2011 on sn-devel-104
-rw-r--r-- | source3/winbindd/winbindd_cache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/winbindd/winbindd_cache.c b/source3/winbindd/winbindd_cache.c index 323c0b9014..b52fe77429 100644 --- a/source3/winbindd/winbindd_cache.c +++ b/source3/winbindd/winbindd_cache.c @@ -969,8 +969,8 @@ static void wcache_save_sid_to_name(struct winbindd_domain *domain, NTSTATUS sta } centry_end(centry, "SN/%s", sid_to_fstring(sid_string, sid)); - DEBUG(10,("wcache_save_sid_to_name: %s -> %s (%s)\n", sid_string, - name, nt_errstr(status))); + DEBUG(10,("wcache_save_sid_to_name: %s -> %s\\%s (%s)\n", sid_string, + domain_name, name, nt_errstr(status))); centry_free(centry); } |