diff options
author | Jacob Hansen <jhansen@op5.com> | 2018-12-10 13:43:09 (GMT) |
---|---|---|
committer | Jacob Hansen <jhansen@op5.com> | 2018-12-10 14:39:13 (GMT) |
commit | 7a660b3f018e0903e098cbd2e766a9af18f6723f (patch) | |
tree | 5f20366050cb357c249127c081252288df3ba58a /plugins-root/check_icmp.c | |
parent | 0882b4201bfa0608b90448c4866b571a20e1fd66 (diff) | |
download | monitoring-plugins-7a660b3f018e0903e098cbd2e766a9af18f6723f.tar.gz |
check_icmp: move opts string into a variable
This commit moves the opts string into a variable as it is now used
twice.
Signed-off-by: Jacob Hansen <jhansen@op5.com>
Diffstat (limited to 'plugins-root/check_icmp.c')
-rw-r--r-- | plugins-root/check_icmp.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins-root/check_icmp.c b/plugins-root/check_icmp.c index 1a2a177..6a883a8 100644 --- a/plugins-root/check_icmp.c +++ b/plugins-root/check_icmp.c | |||
@@ -410,6 +410,7 @@ main(int argc, char **argv) | |||
410 | #ifdef SO_TIMESTAMP | 410 | #ifdef SO_TIMESTAMP |
411 | int on = 1; | 411 | int on = 1; |
412 | #endif | 412 | #endif |
413 | char * opts_str = "vhVw:c:n:p:t:H:s:i:b:I:l:m:64"; | ||
413 | 414 | ||
414 | setlocale (LC_ALL, ""); | 415 | setlocale (LC_ALL, ""); |
415 | bindtextdomain (PACKAGE, LOCALEDIR); | 416 | bindtextdomain (PACKAGE, LOCALEDIR); |
@@ -462,7 +463,7 @@ main(int argc, char **argv) | |||
462 | 463 | ||
463 | /* Parse protocol arguments first */ | 464 | /* Parse protocol arguments first */ |
464 | for(i = 1; i < argc; i++) { | 465 | for(i = 1; i < argc; i++) { |
465 | while((arg = getopt(argc, argv, "vhVw:c:n:p:t:H:s:i:b:I:l:m:64")) != EOF) { | 466 | while((arg = getopt(argc, argv, opts_str)) != EOF) { |
466 | unsigned short size; | 467 | unsigned short size; |
467 | switch(arg) { | 468 | switch(arg) { |
468 | case '4': | 469 | case '4': |
@@ -484,7 +485,7 @@ main(int argc, char **argv) | |||
484 | 485 | ||
485 | /* parse the arguments */ | 486 | /* parse the arguments */ |
486 | for(i = 1; i < argc; i++) { | 487 | for(i = 1; i < argc; i++) { |
487 | while((arg = getopt(argc, argv, "vhVw:c:n:p:t:H:s:i:b:I:l:m:64")) != EOF) { | 488 | while((arg = getopt(argc, argv, opts_str)) != EOF) { |
488 | unsigned short size; | 489 | unsigned short size; |
489 | switch(arg) { | 490 | switch(arg) { |
490 | case 'v': | 491 | case 'v': |