From 00172f827a43289a2187be241193a837d47fc4b2 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sat, 22 Sep 2012 16:05:20 +0900 Subject: [PATCH] spdycat: Add missing break after handling -H option --- src/spdycat.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/spdycat.cc b/src/spdycat.cc index dd1c1080..f25e02df 100644 --- a/src/spdycat.cc +++ b/src/spdycat.cc @@ -738,6 +738,7 @@ int main(int argc, char **argv) // Note that there is no processing currently to handle multiple // message-header fields with the same field name config.headers.insert(std::pair(header, value)); + break; } case 'a': #ifdef HAVE_LIBXML2