]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
Revert "Fix a debug msg, this was probably a leftover from gencache"
authorVolker Lendecke <vl@samba.org>
Fri, 11 Jul 2008 15:45:46 +0000 (17:45 +0200)
committerVolker Lendecke <vl@samba.org>
Fri, 11 Jul 2008 15:53:26 +0000 (17:53 +0200)
This reverts commit daa171552dc00d9602a05ba199c9a3ff24c802f5.

source/winbindd/idmap_cache.c

index ebfae7dc267c98912fac1af07cf230b0250d9353..b427db51b06d64e4710dc7e6376f56f31d2f6dee 100644 (file)
@@ -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;