summaryrefslogtreecommitdiff
path: root/server/server.c
diff options
context:
space:
mode:
Diffstat (limited to 'server/server.c')
-rw-r--r--server/server.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/server.c b/server/server.c
index 9de05a8..381593d 100644
--- a/server/server.c
+++ b/server/server.c
@@ -806,7 +806,7 @@ recover_clt(notice, server)
if ((status = extract_addr(notice, &who)) != ZERR_NONE)
return(status);
if (!(host = hostm_find_host(&who.sin_addr))) {
- syslog(LOG_WARNING,
+ syslog(LOG_INFO,
"recover_clt: host not found (%s, from %s)",
inet_ntoa (who.sin_addr), server->addr);
return(ZERR_NONE); /* XXX */
@@ -814,7 +814,7 @@ recover_clt(notice, server)
if (host->zh_locked)
return(ZSRV_REQUEUE);
if (!(client = client_which_client(&who, notice))) {
- syslog(LOG_WARNING,
+ syslog(LOG_INFO,
"recover_clt: client not found (%s/%d, from %s)",
inet_ntoa (who.sin_addr), ntohs (who.sin_port),
server->addr);