summaryrefslogtreecommitdiffstats
path: root/plugins/check_ping.c
diff options
context:
space:
mode:
authorLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2026-04-08 18:26:03 +0200
committerGitHub <noreply@github.com>2026-04-08 18:26:03 +0200
commit1db493092ca6a68ff690251cc428037b54019a73 (patch)
treee11a18faf34c4d4284388b1ce99bf1aee9e44c91 /plugins/check_ping.c
parent3a6f9292f147de29b21dafa4cf9b7efce3e4cbfd (diff)
downloadmonitoring-plugins-1db493092ca6a68ff690251cc428037b54019a73.tar.gz
added CHECK_EOF to work around warnings about EOF and -1 being the same (#2254)HEADmaster
Co-authored-by: Andreas Baumann <mail@andreasbaumann.cc>
Diffstat (limited to 'plugins/check_ping.c')
-rw-r--r--plugins/check_ping.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_ping.c b/plugins/check_ping.c
index e1ee0f5c..0c9cb19d 100644
--- a/plugins/check_ping.c
+++ b/plugins/check_ping.c
@@ -221,7 +221,7 @@ check_ping_config_wrapper process_arguments(int argc, char **argv) {
221 while (true) { 221 while (true) {
222 int option_index = getopt_long(argc, argv, "VvhnL46t:c:w:H:p:", longopts, &option); 222 int option_index = getopt_long(argc, argv, "VvhnL46t:c:w:H:p:", longopts, &option);
223 223
224 if (option_index == -1 || option_index == EOF) { 224 if (CHECK_EOF(option_index)) {
225 break; 225 break;
226 } 226 }
227 227