Browse Source

Fix format string.

tags/1.0.6
Vsevolod Stakhov 8 years ago
parent
commit
27f1c33b9b
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/lua/lua_http.c

+ 1
- 1
src/lua/lua_http.c View File

@@ -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;

Loading…
Cancel
Save