summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2004-07-21 20:19:20 +0000
committerStef Walter <stef@memberwebs.com>2004-07-21 20:19:20 +0000
commit6c56fb2229e34dbaa213d738b8846e6366c1d4ed (patch)
tree00088649ba8dc8e58b47bd0c5467a0581d449b66 /common
parentb6cc3159f48d07ea6ac5cab7a80dc53ea98a4698 (diff)
- Timeout gives a proper error message
Diffstat (limited to 'common')
-rw-r--r--common/smtppass.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/smtppass.c b/common/smtppass.c
index b66366c..5cc9c7f 100644
--- a/common/smtppass.c
+++ b/common/smtppass.c
@@ -626,7 +626,7 @@ static int smtp_passthru(clamsmtp_context_t* ctx)
switch(select(FD_SETSIZE, &mask, NULL, NULL, &g_timeout))
{
case 0:
- message(ctx, LOG_ERR, "network operation timed out");
+ messagex(ctx, LOG_ERR, "network operation timed out");
RETURN(-1);
case -1:
message(ctx, LOG_ERR, "couldn't select on sockets");