From: Volker Lendecke Date: Fri, 11 Jul 2008 15:45:46 +0000 (+0200) Subject: Revert "Fix a debug msg, this was probably a leftover from gencache" X-Git-Tag: samba-3.3.0pre1~562 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b826420c3adfd24a01080d25f8a61d33d05722c8;p=thirdparty%2Fsamba.git Revert "Fix a debug msg, this was probably a leftover from gencache" This reverts commit daa171552dc00d9602a05ba199c9a3ff24c802f5. --- diff --git a/source/winbindd/idmap_cache.c b/source/winbindd/idmap_cache.c index ebfae7dc267..b427db51b06 100644 --- a/source/winbindd/idmap_cache.c +++ b/source/winbindd/idmap_cache.c @@ -343,8 +343,7 @@ 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 idmap cache data format: %s\n", - (const char *)databuf.dptr)); + DEBUG(2, ("Invalid gencache data format: %s\n", (const char *)databuf.dptr)); /* remove the entry */ tdb_delete_bystring(cache->tdb, sidkey); ret = NT_STATUS_NONE_MAPPED; @@ -453,8 +452,7 @@ 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 idmap cache data format: %s\n", - (const char *)databuf.dptr)); + DEBUG(2, ("Invalid gencache data format: %s\n", (const char *)databuf.dptr)); /* remove the entry */ tdb_delete_bystring(cache->tdb, idkey); ret = NT_STATUS_NONE_MAPPED;