summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2008-07-02 14:04:52 +0200
committerVolker Lendecke <vl@samba.org>2008-07-02 14:18:05 +0200
commitd6ab71f06c22739cacd683ae07e87b120c6c749a (patch)
tree47e89e0d43e60f5141586557eb87acb47cd1463f
parentdd7691ce68f3b0b44c35749efb03d7b7cb38a4ad (diff)
downloadsamba-d6ab71f06c22739cacd683ae07e87b120c6c749a.tar.gz
samba-d6ab71f06c22739cacd683ae07e87b120c6c749a.tar.bz2
samba-d6ab71f06c22739cacd683ae07e87b120c6c749a.zip
Fix a debug msg, this was probably a leftover from gencache
(This used to be commit daa171552dc00d9602a05ba199c9a3ff24c802f5)
-rw-r--r--source3/winbindd/idmap_cache.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source3/winbindd/idmap_cache.c b/source3/winbindd/idmap_cache.c
index b427db51b0..ebfae7dc26 100644
--- a/source3/winbindd/idmap_cache.c
+++ b/source3/winbindd/idmap_cache.c
@@ -343,7 +343,8 @@ NTSTATUS idmap_cache_map_sid(struct idmap_cache_ctx *cache, struct id_map *id)
t = strtol((const char *)databuf.dptr, &endptr, 10);
if ((endptr == NULL) || (*endptr != '/')) {
- DEBUG(2, ("Invalid gencache data format: %s\n", (const char *)databuf.dptr));
+ DEBUG(2, ("Invalid idmap cache data format: %s\n",
+ (const char *)databuf.dptr));
/* remove the entry */
tdb_delete_bystring(cache->tdb, sidkey);
ret = NT_STATUS_NONE_MAPPED;
@@ -452,7 +453,8 @@ NTSTATUS idmap_cache_map_id(struct idmap_cache_ctx *cache, struct id_map *id)
t = strtol((const char *)databuf.dptr, &endptr, 10);
if ((endptr == NULL) || (*endptr != '/')) {
- DEBUG(2, ("Invalid gencache data format: %s\n", (const char *)databuf.dptr));
+ DEBUG(2, ("Invalid idmap cache data format: %s\n",
+ (const char *)databuf.dptr));
/* remove the entry */
tdb_delete_bystring(cache->tdb, idkey);
ret = NT_STATUS_NONE_MAPPED;