From d815a312840010dd87579a9a9f0a1a06be201264 Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Thu, 5 May 2005 18:35:53 +0000 Subject: Make timeout warnings only show at debug level. --- common/smtppass.c | 2 +- common/spio.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/smtppass.c b/common/smtppass.c index 2a312ad..ccfdcf2 100644 --- a/common/smtppass.c +++ b/common/smtppass.c @@ -492,7 +492,7 @@ static void connection_loop(int sock) /* Set timeouts on client */ if(setsockopt(fd, SOL_SOCKET, SO_RCVTIMEO, &(g_state.timeout), sizeof(g_state.timeout)) < 0 || setsockopt(fd, SOL_SOCKET, SO_SNDTIMEO, &(g_state.timeout), sizeof(g_state.timeout)) < 0) - sp_message(NULL, LOG_WARNING, "couldn't set timeouts on incoming connection"); + sp_message(NULL, LOG_DEBUG, "couldn't set timeouts on incoming connection"); fcntl(fd, F_SETFD, fcntl(fd, F_GETFD, 0) | FD_CLOEXEC); diff --git a/common/spio.c b/common/spio.c index d0efe05..5ee58ee 100644 --- a/common/spio.c +++ b/common/spio.c @@ -164,7 +164,7 @@ int spio_connect(spctx_t* ctx, spio_t* io, const struct sockaddr_any* sany, if(setsockopt(fd, SOL_SOCKET, SO_RCVTIMEO, &(g_state.timeout), sizeof(g_state.timeout)) == -1 || setsockopt(fd, SOL_SOCKET, SO_SNDTIMEO, &(g_state.timeout), sizeof(g_state.timeout)) == -1) - sp_messagex(ctx, LOG_WARNING, "%s: couldn't set timeouts on connection", GET_IO_NAME(io)); + sp_messagex(ctx, LOG_DEBUG, "%s: couldn't set timeouts on connection", GET_IO_NAME(io)); fcntl(fd, F_SETFD, fcntl(fd, F_GETFD, 0) | FD_CLOEXEC); -- cgit v1.2.3