Commit fdc5c38e by Michael Schubert

transports: fix buglet

parent 966fbdcb
...@@ -414,7 +414,7 @@ static int git_close(git_transport *t) ...@@ -414,7 +414,7 @@ static int git_close(git_transport *t)
return -1; return -1;
} }
t->parent.connected = 0; t->connected = 0;
#ifdef GIT_WIN32 #ifdef GIT_WIN32
WSACleanup(); WSACleanup();
......
...@@ -613,7 +613,7 @@ static int http_close(git_transport *transport) ...@@ -613,7 +613,7 @@ static int http_close(git_transport *transport)
return -1; return -1;
} }
t->parent.connected = 0; transport->connected = 0;
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment