diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-07-02 19:41:47 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-07-02 19:41:47 +0400 |
commit | 7348a381a903eea67611fbce0782cf968b965ebf (patch) | |
tree | 8c411767a10a26e4d530c0eb897c1b76e23d1b9a /src/plugins/surbl.c | |
parent | 59ecc76a83abd9d57e2c808f34d4d27568eeed33 (diff) | |
download | rspamd-7348a381a903eea67611fbce0782cf968b965ebf.tar.gz rspamd-7348a381a903eea67611fbce0782cf968b965ebf.zip |
* Rework structure and API of statfiles functions to improve performance and avoid missusage of hash table
* Correct url length calculation in urls command
Diffstat (limited to 'src/plugins/surbl.c')
-rw-r--r-- | src/plugins/surbl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/surbl.c b/src/plugins/surbl.c index a7ff5bb7a..f0347f550 100644 --- a/src/plugins/surbl.c +++ b/src/plugins/surbl.c @@ -799,7 +799,7 @@ urls_command_handler (struct worker_task *task) cur = g_list_next (cur); } - buflen += sizeof (RSPAMD_REPLY_BANNER " 0 OK" CRLF CRLF); + buflen += sizeof (RSPAMD_REPLY_BANNER " 0 OK" CRLF CRLF "URLs: "); outbuf = memory_pool_alloc (task->task_pool, buflen * sizeof (char)); |