aboutsummaryrefslogtreecommitdiff
path: root/lib/http.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-04-12 07:53:12 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-04-12 07:53:12 +0000
commit93516effe4112ca98a430d8b603fb03179cb7cb6 (patch)
tree39e21dc2754bddbab9637720ba612bed508ab5f0 /lib/http.c
parent38e518c710664a51be6661b40f13fcbc6d8b20fd (diff)
the HTTP request is a CURLINFO_HEADER_OUT
Diffstat (limited to 'lib/http.c')
-rw-r--r--lib/http.c2
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;