summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-10-20 21:26:10 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-10-20 21:26:10 +0000
commit7575e6afc44f30f07a9bc8c2696c1fb451fd323e (patch)
treec36615281beb510e05359aefce7cc170901c24f5
parent316a9f6480014eb7a7ba1dd5423addc96d339859 (diff)
downloadgnurl-7575e6afc44f30f07a9bc8c2696c1fb451fd323e.tar.gz
gnurl-7575e6afc44f30f07a9bc8c2696c1fb451fd323e.tar.bz2
gnurl-7575e6afc44f30f07a9bc8c2696c1fb451fd323e.zip
made the arrow for 'Send SSL data' point in the right direction!
-rw-r--r--docs/examples/debug.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/examples/debug.c b/docs/examples/debug.c
index 153f3839e..1443ae55d 100644
--- a/docs/examples/debug.c
+++ b/docs/examples/debug.c
@@ -84,6 +84,9 @@ int my_trace(CURL *handle, curl_infotype type,
case CURLINFO_DATA_OUT:
text = "=> Send data";
break;
+ case CURLINFO_SSL_DATA_OUT:
+ text = "=> Send SSL data";
+ break;
case CURLINFO_HEADER_IN:
text = "<= Recv header";
break;
@@ -93,9 +96,6 @@ int my_trace(CURL *handle, curl_infotype type,
case CURLINFO_SSL_DATA_IN:
text = "<= Recv SSL data";
break;
- case CURLINFO_SSL_DATA_OUT:
- text = "<= Send SSL data";
- break;
}
dump(text, stderr, data, size, config->trace_ascii);