From: Holger Weiss Date: Tue, 23 Jan 2007 17:20:43 +0000 (+0000) Subject: Add missing `break' to the switch-case block that handles the `-m' option X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=3f9433a0d1863643df27bea2b93c20e64c5fccb8;p=nagiosplug.git Add missing `break' to the switch-case block that handles the `-m' option (Nobuhiro Ban - 1642682) git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1577 f882894a-f735-0410-b71e-b25c423dba1c --- diff --git a/plugins/check_tcp.c b/plugins/check_tcp.c index 00105f9..faa3ced 100644 --- a/plugins/check_tcp.c +++ b/plugins/check_tcp.c @@ -520,6 +520,7 @@ process_arguments (int argc, char **argv) usage4 (_("Maxbytes must be a positive integer")); else maxbytes = strtol (optarg, NULL, 0); + break; case 'q': if (escape) server_quit = np_escaped_string(optarg);