aboutsummaryrefslogtreecommitdiff
path: root/plugins/check_tcp.c
diff options
context:
space:
mode:
authorGravatar Holger Weiss <hweiss@users.sourceforge.net> 2007-01-23 17:20:43 +0000
committerGravatar Holger Weiss <hweiss@users.sourceforge.net> 2007-01-23 17:20:43 +0000
commit3f9433a0d1863643df27bea2b93c20e64c5fccb8 (patch)
tree4e37e51f14cdd342d9d8db3e237d04fe8cd8fa06 /plugins/check_tcp.c
parent5aa4d5bbb9383299afa38617f0310bce57dddbc5 (diff)
downloadmonitoring-plugins-3f9433a0d1863643df27bea2b93c20e64c5fccb8.tar.gz
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
Diffstat (limited to 'plugins/check_tcp.c')
-rw-r--r--plugins/check_tcp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/check_tcp.c b/plugins/check_tcp.c
index 00105f9f..faa3cedb 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);