From: Daniel Stenberg Date: Tue, 8 Oct 2002 16:10:37 +0000 (+0000) Subject: failf() now sends the text to the debug function callback X-Git-Tag: upstream/7.37.1~15196 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=91b84b89e4d057d7c1a022dc1b6ce44e3738dcf0;p=platform%2Fupstream%2Fcurl.git failf() now sends the text to the debug function callback --- diff --git a/lib/sendf.c b/lib/sendf.c index ecc14f1..c4addb5 100644 --- a/lib/sendf.c +++ b/lib/sendf.c @@ -153,6 +153,9 @@ void Curl_failf(struct SessionHandle *data, const char *fmt, ...) if(data->set.errorbuffer && !data->state.errorbuf) { vsnprintf(data->set.errorbuffer, CURL_ERROR_SIZE, fmt, ap); data->state.errorbuf = TRUE; /* wrote error string */ + + Curl_debug(data, CURLINFO_TEXT, data->set.errorbuffer, + strlen(data->set.errorbuffer)); } va_end(ap); }