diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2011-03-09 17:36:41 +0300 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2011-03-09 17:36:41 +0300 |
commit | 1dcb152734a13419f8641d38c98fb4b138ac90fd (patch) | |
tree | 482808579a0d07ed3e1fecb2c0fca55dcaf74ee7 /src/cdb | |
parent | 3e71b98b176fbaf54ff440e3831b5b1bd6d6e4f3 (diff) | |
download | rspamd-1dcb152734a13419f8641d38c98fb4b138ac90fd.tar.gz rspamd-1dcb152734a13419f8641d38c98fb4b138ac90fd.zip |
Print "0.00" instead of "0" in protocol output.
Fix misprint in cdb handling.
Diffstat (limited to 'src/cdb')
-rw-r--r-- | src/cdb/cdb_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cdb/cdb_init.c b/src/cdb/cdb_init.c index af7b25256..b962c43fa 100644 --- a/src/cdb/cdb_init.c +++ b/src/cdb/cdb_init.c @@ -133,7 +133,7 @@ cdb_timer_callback (int fd, short what, gpointer ud) } (void)close (cdbp->cdb_fd); cdbp->cdb_fsize = 0; - (void)cdb_init (cdbp, fd); + (void)cdb_init (cdbp, nfd); } } } |