fix sock_connect() to return -1 on all errors (Frederick Nacino)

This commit is contained in:
marschap
2006-05-07 10:08:31 +00:00
parent 656c5d8858
commit 5fc4dfc562
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -226,7 +226,7 @@ int connect_and_setup()
report(RPT_INFO, "Connecting to %s:%d", address, port);
sock = sock_connect(address, port);
if (sock <= 0) {
if (sock < 0) {
return -1;
}