aboutsummaryrefslogtreecommitdiffstats
path: root/src/statfile.c
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@rambler-co.ru>2011-07-26 17:59:16 +0400
committerVsevolod Stakhov <vsevolod@rambler-co.ru>2011-07-26 17:59:16 +0400
commit6bb0dd1d22e8217023e3f695c9a24c1d627e60d9 (patch)
tree5c292773f315d284d3a5bd3a31172845c983c4a7 /src/statfile.c
parentd6625c5b603460aa485acc5d3ddd96a8b3c10858 (diff)
downloadrspamd-6bb0dd1d22e8217023e3f695c9a24c1d627e60d9.tar.gz
rspamd-6bb0dd1d22e8217023e3f695c9a24c1d627e60d9.zip
Update a sample config file.0.4.1
Set version to 0.4.1.
Diffstat (limited to 'src/statfile.c')
-rw-r--r--src/statfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/statfile.c b/src/statfile.c
index 65da15033..215378749 100644
--- a/src/statfile.c
+++ b/src/statfile.c
@@ -332,14 +332,14 @@ statfile_pool_open (statfile_pool_t * pool, gchar *filename, size_t size, gboole
}
if (!forced && st.st_size > pool->max) {
- msg_info ("cannot attach file to pool, too large: %z", (size_t) st.st_size);
+ msg_info ("cannot attach file to pool, too large: %Hz", (size_t) st.st_size);
return NULL;
}
memory_pool_lock_mutex (pool->lock);
if (!forced && abs (st.st_size - size) > sizeof (struct stat_file)) {
memory_pool_unlock_mutex (pool->lock);
- msg_warn ("need to reindex statfile old size: %z, new size: %z", st.st_size, size);
+ msg_warn ("need to reindex statfile old size: %Hz, new size: %Hz", st.st_size, size);
return statfile_pool_reindex (pool, filename, st.st_size, size);
}
memory_pool_unlock_mutex (pool->lock);