Commit 00172f82 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

spdycat: Add missing break after handling -H option

parent 0409c76b
...@@ -738,6 +738,7 @@ int main(int argc, char **argv) ...@@ -738,6 +738,7 @@ int main(int argc, char **argv)
// Note that there is no processing currently to handle multiple // Note that there is no processing currently to handle multiple
// message-header fields with the same field name // message-header fields with the same field name
config.headers.insert(std::pair<std::string,std::string>(header, value)); config.headers.insert(std::pair<std::string,std::string>(header, value));
break;
} }
case 'a': case 'a':
#ifdef HAVE_LIBXML2 #ifdef HAVE_LIBXML2
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment