Skip to content
Snippets Groups Projects
Commit 7b5b60d2 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

hm, an unknown error from bind() when binding the outgoing socket would

failf("%d") without the error as argument... it would always make a weird
number get output
parent e719f416
No related branches found
No related tags found
No related merge requests found
......@@ -279,8 +279,9 @@ static CURLcode bindlocal(struct connectdata *conn,
failf(data, "Insufficient kernel memory was available: %d", errno);
break;
default:
failf(data,"errno %d\n");
} /* end of switch */
failf(data, "errno %d\n", errno);
break;
} /* end of switch(errno) */
return CURLE_HTTP_PORT_FAILED;
} /* end of else */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment