diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-04-12 07:53:12 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-04-12 07:53:12 +0000 |
commit | 93516effe4112ca98a430d8b603fb03179cb7cb6 (patch) | |
tree | 39e21dc2754bddbab9637720ba612bed508ab5f0 | |
parent | 38e518c710664a51be6661b40f13fcbc6d8b20fd (diff) |
the HTTP request is a CURLINFO_HEADER_OUT
-rw-r--r-- | lib/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c index 42c167275..758433509 100644 --- a/lib/http.c +++ b/lib/http.c @@ -146,7 +146,7 @@ CURLcode add_buffer_send(int sockfd, struct connectdata *conn, send_buffer *in, if(conn->data->set.verbose) /* this data _may_ contain binary stuff */ - Curl_debug(conn->data, CURLINFO_DATA_OUT, ptr, amount); + Curl_debug(conn->data, CURLINFO_HEADER_OUT, ptr, amount); if(amount != size) { size -= amount; |