]> granicus.if.org Git - curl/commitdiff
made the arrow for 'Send SSL data' point in the right direction!
authorDaniel Stenberg <daniel@haxx.se>
Fri, 20 Oct 2006 21:26:10 +0000 (21:26 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 20 Oct 2006 21:26:10 +0000 (21:26 +0000)
docs/examples/debug.c

index 153f3839e5fbf10cb9d1af33fe94663bbf1aa592..1443ae55d8d1b56c0f0783178faf24e2aff908b0 100644 (file)
@@ -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);