diff options
author | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2023-10-18 14:54:33 (GMT) |
---|---|---|
committer | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2023-10-18 14:54:33 (GMT) |
commit | ee80cc259190563ddb29eb780e13eb038a4ff680 (patch) | |
tree | 59dcd80096b1925caad2c54e822198edc403830a /plugins/check_dns.c | |
parent | 6fc6e86994a678ee6fb0fdcf3976cf8b1944ada2 (diff) | |
download | monitoring-plugins-ee80cc259190563ddb29eb780e13eb038a4ff680.tar.gz |
check_dns: Another C99 boolean
Diffstat (limited to 'plugins/check_dns.c')
-rw-r--r-- | plugins/check_dns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_dns.c b/plugins/check_dns.c index 7dcec38..82dc264 100644 --- a/plugins/check_dns.c +++ b/plugins/check_dns.c | |||
@@ -88,7 +88,7 @@ main (int argc, char **argv) | |||
88 | bool parse_address = false; /* This flag scans for Address: but only after Name: */ | 88 | bool parse_address = false; /* This flag scans for Address: but only after Name: */ |
89 | output chld_out, chld_err; | 89 | output chld_out, chld_err; |
90 | size_t i; | 90 | size_t i; |
91 | int is_nxdomain = false; | 91 | bool is_nxdomain = false; |
92 | 92 | ||
93 | setlocale (LC_ALL, ""); | 93 | setlocale (LC_ALL, ""); |
94 | bindtextdomain (PACKAGE, LOCALEDIR); | 94 | bindtextdomain (PACKAGE, LOCALEDIR); |