Olaf fixed a leftover problem with the CONNECT fix of his that would leave a

wrong error message in the error message buffer.
This commit is contained in:
Daniel Stenberg 2006-11-07 14:07:02 +00:00
parent 6e682c2b01
commit b5b3d9e5c7
2 changed files with 10 additions and 1 deletions

View file

@ -3978,8 +3978,13 @@ static CURLcode SetupConnection(struct connectdata *conn,
/* if the connection was closed by the server while exchanging
authentication informations, retry with the new set
authentication information */
if(conn->bits.proxy_connect_closed)
if(conn->bits.proxy_connect_closed) {
/* reset the error buffer */
if (data->set.errorbuffer)
data->set.errorbuffer[0] = '\0';
data->state.errorbuf = FALSE;
continue;
}
if(CURLE_OK != result)
return result;