X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Flocate_host.c;fp=webcit%2Flocate_host.c;h=d015f53f54ab1e6df2e7186a0f346ef2e5e297a5;hb=156d3eaa1b5d85cb70a79046bd874ab832df6ff1;hp=72a73cca7395dad5bb04def1761118f5b4afe39c;hpb=0a539bec4b26705fffd322796e683aa214863abb;p=citadel.git diff --git a/webcit/locate_host.c b/webcit/locate_host.c index 72a73cca7..d015f53f5 100644 --- a/webcit/locate_host.c +++ b/webcit/locate_host.c @@ -27,5 +27,5 @@ void locate_host(StrBuf *tbuf, int client_socket) getpeername(client_socket, (struct sockaddr *)&clientaddr, &addrlen); getnameinfo((struct sockaddr *)&clientaddr, addrlen, clienthost, sizeof(clienthost), NULL, 0, 0); StrBufAppendBufPlain(tbuf, clienthost, -1, 0); - syslog(9, "Client is at %s\n", clienthost); + syslog(LOG_DEBUG, "Client is at %s\n", clienthost); }