diff options
author | Volker Lendecke <vl@samba.org> | 2008-07-11 17:45:46 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-07-11 17:53:26 +0200 |
commit | b76fb9ac739afb2007adfb652c5d8c14a07e0991 (patch) | |
tree | dd8e6316d24bdd315b71836c03e3b3140732d88e /source3/winbindd | |
parent | a25278a522414ef265871ed1108db72ac31e4550 (diff) | |
download | samba-b76fb9ac739afb2007adfb652c5d8c14a07e0991.tar.gz samba-b76fb9ac739afb2007adfb652c5d8c14a07e0991.tar.bz2 samba-b76fb9ac739afb2007adfb652c5d8c14a07e0991.zip |
Revert "Fix a debug msg, this was probably a leftover from gencache"
This reverts commit daa171552dc00d9602a05ba199c9a3ff24c802f5.
(This used to be commit b826420c3adfd24a01080d25f8a61d33d05722c8)
Diffstat (limited to 'source3/winbindd')
-rw-r--r-- | source3/winbindd/idmap_cache.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/source3/winbindd/idmap_cache.c b/source3/winbindd/idmap_cache.c index ebfae7dc26..b427db51b0 100644 --- a/source3/winbindd/idmap_cache.c +++ b/source3/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; |