summaryrefslogtreecommitdiffstats
path: root/plugins/check_dns.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/check_dns.c')
-rw-r--r--plugins/check_dns.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_dns.c b/plugins/check_dns.c
index e6483b9..94d4300 100644
--- a/plugins/check_dns.c
+++ b/plugins/check_dns.c
@@ -224,9 +224,9 @@ error_scan (char *input_buffer)
224{ 224{
225 225
226 /* the DNS lookup timed out */ 226 /* the DNS lookup timed out */
227 if (strstr (input_buffer, "Note: nslookup is deprecated and may be removed from future releases.") || 227 if (strstr (input_buffer, _("Note: nslookup is deprecated and may be removed from future releases.")) ||
228 strstr (input_buffer, "Consider using the `dig' or `host' programs instead. Run nslookup with") || 228 strstr (input_buffer, _("Consider using the `dig' or `host' programs instead. Run nslookup with")) ||
229 strstr (input_buffer, "the `-sil[ent]' option to prevent this message from appearing.")) 229 strstr (input_buffer, _("the `-sil[ent]' option to prevent this message from appearing.")))
230 return STATE_OK; 230 return STATE_OK;
231 231
232 /* DNS server is not running... */ 232 /* DNS server is not running... */