mirror of
https://github.com/curl/curl.git
synced 2026-07-23 10:27:16 +03:00
switch() on the right variable!
This commit is contained in:
parent
bd04c6fb67
commit
fe6f0aeb26
1 changed files with 1 additions and 1 deletions
|
|
@ -354,7 +354,7 @@ static CURLcode bindlocal(struct connectdata *conn,
|
|||
#endif
|
||||
if(!bindworked) {
|
||||
int err = Curl_ourerrno();
|
||||
switch(errno) {
|
||||
switch(err) {
|
||||
case EBADF:
|
||||
failf(data, "Invalid descriptor: %d", err);
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue