summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Wagner <waja@cyconet.org>2014-07-30 21:29:28 (GMT)
committerJan Wagner <waja@cyconet.org>2014-07-30 21:30:59 (GMT)
commitb7ce241ba66298e06004236936e9915108876144 (patch)
tree2a84abaf751e825cbc08a7f257e0bba83a5d32fc
parentd0da78ced184197b29af9fe910aaf56a9e7fe762 (diff)
downloadmonitoring-plugins-b7ce241.tar.gz
check_dns: Use strchr instead of index
-rw-r--r--plugins/check_dns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_dns.c b/plugins/check_dns.c
index da90da7..d7f7346 100644
--- a/plugins/check_dns.c
+++ b/plugins/check_dns.c
@@ -139,7 +139,7 @@ main (int argc, char **argv)
139 /* bug ID: 2946553 - Older versions of bind will use all available dns 139 /* bug ID: 2946553 - Older versions of bind will use all available dns
140 servers, we have to match the one specified */ 140 servers, we have to match the one specified */
141 if (strstr (chld_out.line[i], "Server:") && strlen(dns_server) > 0) { 141 if (strstr (chld_out.line[i], "Server:") && strlen(dns_server) > 0) {
142 temp_buffer = index (chld_out.line[i], ':'); 142 temp_buffer = strchr (chld_out.line[i], ':');
143 temp_buffer++; 143 temp_buffer++;
144 144
145 /* Strip leading tabs */ 145 /* Strip leading tabs */