Skip to content
Snippets Groups Projects
Commit 3aa89992 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Curl_debug: document switch fallthroughs

parent b0bfae19
No related branches found
No related tags found
No related merge requests found
......@@ -661,11 +661,13 @@ int Curl_debug(struct SessionHandle *data, curl_infotype type,
switch (type) {
case CURLINFO_HEADER_IN:
w = "Header";
/* FALLTHROUGH */
case CURLINFO_DATA_IN:
t = "from";
break;
case CURLINFO_HEADER_OUT:
w = "Header";
/* FALLTHROUGH */
case CURLINFO_DATA_OUT:
t = "to";
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment