diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-10-15 22:25:49 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-10-15 22:25:49 +0100 |
commit | 27f1c33b9b4a4b04d031679b8815857f4709f0ee (patch) | |
tree | bc57d19ffd379fcf6a88ae5037ce159e3fcffd98 /src/lua/lua_http.c | |
parent | 01a94d2edbdcc64b25ab94709b302725a1a6d58a (diff) | |
download | rspamd-27f1c33b9b4a4b04d031679b8815857f4709f0ee.tar.gz rspamd-27f1c33b9b4a4b04d031679b8815857f4709f0ee.zip |
Fix format string.
Diffstat (limited to 'src/lua/lua_http.c')
-rw-r--r-- | src/lua/lua_http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua/lua_http.c b/src/lua/lua_http.c index 7390000e0..b7b63596e 100644 --- a/src/lua/lua_http.c +++ b/src/lua/lua_http.c @@ -191,7 +191,7 @@ lua_http_make_connection (struct lua_http_cbdata *cbd) fd = rspamd_inet_address_connect (cbd->addr, SOCK_STREAM, TRUE); if (fd == -1) { - msg_info ("cannot connect to %v", cbd->msg->host); + msg_info ("cannot connect to %V", cbd->msg->host); return FALSE; } cbd->fd = fd; |