Minor fix.

This commit is contained in:
ddouthitt
2001-10-12 04:34:55 +00:00
parent 00ef5a1ac8
commit c13f75bcaa
+1 -1
View File
@@ -51,7 +51,7 @@ sock_create_inet_socket (char * addr, unsigned int port)
sock = socket (PF_INET, SOCK_STREAM, 0);
if (sock < 0) {
perror ("Error creating socket");
syslog(LOG_ALERT, "could not create socket", port);
syslog(LOG_ALERT, "could not create socket");
return -1;
}