diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-02-25 13:02:30 +0100 |
---|---|---|
committer | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-03-07 23:38:50 +0100 |
commit | 92fb0ec66218059589d0b6b0fed08735b2765d60 (patch) | |
tree | fecdc560db6fc5c184c74d5d68d741d71fbf9aef | |
parent | 46683da7b7a35a70dcb7dcb0e64160b78f84e965 (diff) | |
download | monitoring-plugins-92fb0ec66218059589d0b6b0fed08735b2765d60.tar.gz |
check_ssh: add missing break statement
-rw-r--r-- | plugins/check_ssh.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/check_ssh.c b/plugins/check_ssh.c index ab4af352..3d6a0710 100644 --- a/plugins/check_ssh.c +++ b/plugins/check_ssh.c | |||
@@ -182,6 +182,7 @@ process_arguments_wrapper process_arguments(int argc, char **argv) { | |||
182 | } else { | 182 | } else { |
183 | usage2(_("Port number must be a positive integer"), optarg); | 183 | usage2(_("Port number must be a positive integer"), optarg); |
184 | } | 184 | } |
185 | break; | ||
185 | case output_format_index: { | 186 | case output_format_index: { |
186 | parsed_output_format parser = mp_parse_output_format(optarg); | 187 | parsed_output_format parser = mp_parse_output_format(optarg); |
187 | if (!parser.parsing_success) { | 188 | if (!parser.parsing_success) { |