mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-07 16:22:40 +00:00
transports: fix buglet
This commit is contained in:
parent
966fbdcb8e
commit
fdc5c38e40
@ -414,7 +414,7 @@ static int git_close(git_transport *t)
|
||||
return -1;
|
||||
}
|
||||
|
||||
t->parent.connected = 0;
|
||||
t->connected = 0;
|
||||
|
||||
#ifdef GIT_WIN32
|
||||
WSACleanup();
|
||||
|
@ -613,7 +613,7 @@ static int http_close(git_transport *transport)
|
||||
return -1;
|
||||
}
|
||||
|
||||
t->parent.connected = 0;
|
||||
transport->connected = 0;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user