From: Daniel Stenberg Date: Tue, 7 Jan 2003 11:23:52 +0000 (+0000) Subject: when sending an error message to the debugfunction, we append a newline so X-Git-Tag: curl-7_10_3~33 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d0cffdec5dcc1aadf1c1582440d0046e35ab10dc;p=curl when sending an error message to the debugfunction, we append a newline so that the output looks better --- diff --git a/lib/sendf.c b/lib/sendf.c index add8af9ef..28297f4d8 100644 --- a/lib/sendf.c +++ b/lib/sendf.c @@ -154,9 +154,19 @@ void Curl_failf(struct SessionHandle *data, const char *fmt, ...) vsnprintf(data->set.errorbuffer, CURL_ERROR_SIZE, fmt, ap); data->state.errorbuf = TRUE; /* wrote error string */ - if(data->set.verbose) - Curl_debug(data, CURLINFO_TEXT, data->set.errorbuffer, - strlen(data->set.errorbuffer)); + if(data->set.verbose) { + int len = strlen(data->set.errorbuffer); + bool doneit=FALSE; + if(len < CURL_ERROR_SIZE) { + doneit = TRUE; + data->set.errorbuffer[len] = '\n'; + data->set.errorbuffer[++len] = '\0'; + } + Curl_debug(data, CURLINFO_TEXT, data->set.errorbuffer, len); + if(doneit) + /* cut off the newline again */ + data->set.errorbuffer[--len]=0; + } } va_end(ap); }