summaryrefslogtreecommitdiff
path: root/source/nsswitch/winbindd_cache.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2000-05-12 06:27:34 +0000
committerAndrew Tridgell <tridge@samba.org>2000-05-12 06:27:34 +0000
commit0189af544244d7d20e4042cd1238f370968cb7a9 (patch)
tree358908284683ebf54cdf13cdc59b6665d3f94a52 /source/nsswitch/winbindd_cache.c
parent11328f27816160d77934fb9b2409263f442e4f42 (diff)
downloadsamba-0189af544244d7d20e4042cd1238f370968cb7a9.tar.gz
use "winbind separator" in tng as well
Diffstat (limited to 'source/nsswitch/winbindd_cache.c')
-rw-r--r--source/nsswitch/winbindd_cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/nsswitch/winbindd_cache.c b/source/nsswitch/winbindd_cache.c
index b999e8d9ce0..b6b753bae0c 100644
--- a/source/nsswitch/winbindd_cache.c
+++ b/source/nsswitch/winbindd_cache.c
@@ -303,7 +303,7 @@ static BOOL fetch_cache_entry(char *domain, char *cache_type, char *name, void *
data = tdb_fetch_by_string(cache_tdb, keystr);
if (!data.dptr) return False;
- DEBUG(4, ("returning cached entry for %s/%s\n", domain, name));
+ DEBUG(4, ("returning cached entry for %s\\%s\n", domain, name));
/* Copy found entry into buffer */
memcpy((char *)buf, data.dptr, len < data.dsize ? len : data.dsize);