aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2013-11-08 17:23:11 +0000
committerVsevolod Stakhov <vsevolod@highsecure.ru>2013-11-08 17:23:11 +0000
commitad75fd54534399c5964b43e5ee5c18ea0efdc41b (patch)
treea76fcd420681b0177c7a2437c11b5e52bc9b5444 /lib
parent026efc14226aa1804c0ad0d34e72855296806b89 (diff)
downloadrspamd-ad75fd54534399c5964b43e5ee5c18ea0efdc41b.tar.gz
rspamd-ad75fd54534399c5964b43e5ee5c18ea0efdc41b.zip
Fix timeout error message.
Diffstat (limited to 'lib')
-rw-r--r--lib/client/librspamdclient.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/client/librspamdclient.c b/lib/client/librspamdclient.c
index b99e1c2f9..52620e1c3 100644
--- a/lib/client/librspamdclient.c
+++ b/lib/client/librspamdclient.c
@@ -922,7 +922,7 @@ read_rspamd_reply_line (struct rspamd_connection *c, GError **err)
if (r == 0) {
errno = ETIMEDOUT;
}
- *err = g_error_new (G_RSPAMD_ERROR, errno, "Cannot read reply from controller %s: %s",
+ *err = g_error_new (G_RSPAMD_ERROR, errno, "Cannot read reply from rspamd server %s: %s",
c->server->name, strerror (errno));
}
upstream_fail (&c->server->up, c->connection_time);