diff options
author | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2023-10-19 08:17:28 (GMT) |
---|---|---|
committer | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2023-10-19 08:17:28 (GMT) |
commit | d820929dd8316c4410b2369177832151d31dc99a (patch) | |
tree | 552f45a9c0913c23b7150a32f2a9153bcaadf148 /plugins | |
parent | 531e0f9427bc2d43c76102d1b1d785bfba49deb5 (diff) | |
download | monitoring-plugins-d820929dd8316c4410b2369177832151d31dc99a.tar.gz |
check_smtp: little fix for C99 booleans missed earlier
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/check_smtp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_smtp.c b/plugins/check_smtp.c index 9f01943..d1c2466 100644 --- a/plugins/check_smtp.c +++ b/plugins/check_smtp.c | |||
@@ -615,7 +615,7 @@ process_arguments (int argc, char **argv) | |||
615 | verbose++; | 615 | verbose++; |
616 | break; | 616 | break; |
617 | case 'q': | 617 | case 'q': |
618 | ignore_send_quit_failure++; /* ignore problem sending QUIT */ | 618 | ignore_send_quit_failure = true; /* ignore problem sending QUIT */ |
619 | break; | 619 | break; |
620 | case 't': /* timeout */ | 620 | case 't': /* timeout */ |
621 | if (is_intnonneg (optarg)) { | 621 | if (is_intnonneg (optarg)) { |