Removed logging subsystem from webcit. It's all syslog now.
[citadel.git] / webcit / locate_host.c
index f0ca6c1fbb6c185c877da6f49bba2902eaa0fad0..0c173b50424998ee32aadfa5ffcebd2cce508225 100644 (file)
@@ -33,5 +33,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);
-       lprintf(9, "Client is at %s\n", clienthost);
+       syslog(9, "Client is at %s\n", clienthost);
 }