Przeglądaj źródła

* Changd the socket() error to LOG_WARNING

svn: 904
Bryan Drewery 22 lat temu
rodzic
commit
94bd36fd61
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      src/net.c

+ 1 - 1
src/net.c

@@ -490,7 +490,7 @@ int real_getsock(int options, char *fname, int line)
   if (sock >= 0)
   if (sock >= 0)
     setsock(sock, options);
     setsock(sock, options);
   else
   else
-    putlog(LOG_MISC, "*", "Warning: Can't create new socket! (%s:%d)", fname, line);
+    putlog(LOG_WARNING, "*", "Warning: Can't create new socket! (%s:%d)", fname, line);
   return sock;
   return sock;
 }
 }