aboutsummaryrefslogtreecommitdiffstats
path: root/src/statfile.c
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@rambler-co.ru>2009-01-16 17:02:26 +0300
committerVsevolod Stakhov <vsevolod@rambler-co.ru>2009-01-16 17:02:26 +0300
commitfe5ad5874aad220fb12a259e607f89ce5fae7465 (patch)
treee22215da4087e82926bf3797469a4e00914e8c1e /src/statfile.c
parentd0681272065a04de5e8249b782ac7f9efa938555 (diff)
downloadrspamd-fe5ad5874aad220fb12a259e607f89ce5fae7465.tar.gz
rspamd-fe5ad5874aad220fb12a259e607f89ce5fae7465.zip
* Add simple utility for sending mail to rspamd
* Fix some errors in freeing message object
Diffstat (limited to 'src/statfile.c')
-rw-r--r--src/statfile.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/statfile.c b/src/statfile.c
index ca78b79e9..c0a2a2487 100644
--- a/src/statfile.c
+++ b/src/statfile.c
@@ -295,9 +295,7 @@ statfile_pool_get_block (statfile_pool_t *pool, char *filename, uint32_t h1, uin
if (i + blocknum > file->blocks) {
break;
}
- msg_debug ("statfile_pool_get_block: test block with h1=%u, h2=%u, number %u in chain %u", block->hash1, block->hash2, i, blocknum);
if (block->hash1 == h1 && block->hash2 == h2) {
- msg_debug ("statfile_pool_get_block: found block with h1=%u, h2=%u, number %u in chain %u", h1, h2, i, blocknum);
block->last_access = now - (time_t)header->create_time;
return block->value;
}
@@ -305,7 +303,6 @@ statfile_pool_get_block (statfile_pool_t *pool, char *filename, uint32_t h1, uin
block = (struct stat_file_block *)c;
}
- msg_debug ("statfile_pool_get_block: block with h1=%u, h2=%u, not found in chain %u", h1, h2, blocknum);
return 0;
}