From b5b3d9e5c7f88f6586d31a84028ff07fba658ee8 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 7 Nov 2006 14:07:02 +0000 Subject: Olaf fixed a leftover problem with the CONNECT fix of his that would leave a wrong error message in the error message buffer. --- lib/url.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/url.c b/lib/url.c index 2791c718c..c5ce746c0 100644 --- a/lib/url.c +++ b/lib/url.c @@ -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; -- cgit v1.2.3