summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Wagner <waja@cyconet.org>2016-11-30 16:38:36 (GMT)
committerJan Wagner <waja@cyconet.org>2017-01-10 20:03:20 (GMT)
commitb7ba1178da7cd12ab983bd3b8047368c5a119851 (patch)
treeaeab25f5959e153f5ffc7b6d12e6ac30b31b2a01
parent2e905c39b8cd030fe05216219539ca99bec27f1d (diff)
downloadmonitoring-plugins-b7ba1178da7cd12ab983bd3b8047368c5a119851.tar.gz
Spelling fixes suggested by lintian
-rw-r--r--plugins-root/check_icmp.c2
-rw-r--r--plugins/check_fping.c2
-rw-r--r--plugins/check_http.c2
-rw-r--r--plugins/check_ide_smart.c2
-rw-r--r--plugins/check_ldap.c2
-rw-r--r--plugins/check_ntp.c4
-rw-r--r--plugins/check_ntp_peer.c2
-rw-r--r--plugins/check_pgsql.c2
-rw-r--r--plugins/check_radius.c2
-rw-r--r--plugins/check_real.c2
-rw-r--r--plugins/check_smtp.c2
-rw-r--r--po/de.po22
-rw-r--r--po/fr.po12
-rw-r--r--po/monitoring-plugins.pot12
14 files changed, 35 insertions, 35 deletions
diff --git a/plugins-root/check_icmp.c b/plugins-root/check_icmp.c
index 9ed12ba..b722f80 100644
--- a/plugins-root/check_icmp.c
+++ b/plugins-root/check_icmp.c
@@ -608,7 +608,7 @@ main(int argc, char **argv)
608 if(max_completion_time > (u_int)timeout * 1000000) { 608 if(max_completion_time > (u_int)timeout * 1000000) {
609 printf("max_completion_time: %llu timeout: %u\n", 609 printf("max_completion_time: %llu timeout: %u\n",
610 max_completion_time, timeout); 610 max_completion_time, timeout);
611 printf("Timout must be at lest %llu\n", 611 printf("Timeout must be at lest %llu\n",
612 max_completion_time / 1000000 + 1); 612 max_completion_time / 1000000 + 1);
613 } 613 }
614 } 614 }
diff --git a/plugins/check_fping.c b/plugins/check_fping.c
index da1ce1a..521d0fe 100644
--- a/plugins/check_fping.c
+++ b/plugins/check_fping.c
@@ -184,7 +184,7 @@ textscan (char *buf)
184 int status = STATE_UNKNOWN; 184 int status = STATE_UNKNOWN;
185 185
186 if (strstr (buf, "not found")) { 186 if (strstr (buf, "not found")) {
187 die (STATE_CRITICAL, _("FPING UNKNOW - %s not found\n"), server_name); 187 die (STATE_CRITICAL, _("FPING UNKNOWN - %s not found\n"), server_name);
188 188
189 } 189 }
190 else if (strstr (buf, "is unreachable") || strstr (buf, "Unreachable")) { 190 else if (strstr (buf, "is unreachable") || strstr (buf, "Unreachable")) {
diff --git a/plugins/check_http.c b/plugins/check_http.c
index e5ef7cc..86a36c2 100644
--- a/plugins/check_http.c
+++ b/plugins/check_http.c
@@ -1629,7 +1629,7 @@ print_help (void)
1629 printf ("%s\n", _("Notes:")); 1629 printf ("%s\n", _("Notes:"));
1630 printf (" %s\n", _("This plugin will attempt to open an HTTP connection with the host.")); 1630 printf (" %s\n", _("This plugin will attempt to open an HTTP connection with the host."));
1631 printf (" %s\n", _("Successful connects return STATE_OK, refusals and timeouts return STATE_CRITICAL")); 1631 printf (" %s\n", _("Successful connects return STATE_OK, refusals and timeouts return STATE_CRITICAL"));
1632 printf (" %s\n", _("other errors return STATE_UNKNOWN. Successful connects, but incorrect reponse")); 1632 printf (" %s\n", _("other errors return STATE_UNKNOWN. Successful connects, but incorrect response"));
1633 printf (" %s\n", _("messages from the host result in STATE_WARNING return values. If you are")); 1633 printf (" %s\n", _("messages from the host result in STATE_WARNING return values. If you are"));
1634 printf (" %s\n", _("checking a virtual server that uses 'host headers' you must supply the FQDN")); 1634 printf (" %s\n", _("checking a virtual server that uses 'host headers' you must supply the FQDN"));
1635 printf (" %s\n", _("(fully qualified domain name) as the [host_name] argument.")); 1635 printf (" %s\n", _("(fully qualified domain name) as the [host_name] argument."));
diff --git a/plugins/check_ide_smart.c b/plugins/check_ide_smart.c
index 4662131..0160d98 100644
--- a/plugins/check_ide_smart.c
+++ b/plugins/check_ide_smart.c
@@ -283,7 +283,7 @@ get_offline_text (int status)
283 return offline_status_text[i].text; 283 return offline_status_text[i].text;
284 } 284 }
285 } 285 }
286 return "UNKNOW"; 286 return "UNKNOWN";
287} 287}
288 288
289 289
diff --git a/plugins/check_ldap.c b/plugins/check_ldap.c
index 66be4b4..bc7bd44 100644
--- a/plugins/check_ldap.c
+++ b/plugins/check_ldap.c
@@ -237,7 +237,7 @@ main (int argc, char *argv[])
237 if(entries_thresholds != NULL) { 237 if(entries_thresholds != NULL) {
238 if (verbose) { 238 if (verbose) {
239 printf ("entries found: %d\n", num_entries); 239 printf ("entries found: %d\n", num_entries);
240 print_thresholds("entry threasholds", entries_thresholds); 240 print_thresholds("entry thresholds", entries_thresholds);
241 } 241 }
242 status_entries = get_status(num_entries, entries_thresholds); 242 status_entries = get_status(num_entries, entries_thresholds);
243 if (status_entries == STATE_CRITICAL) { 243 if (status_entries == STATE_CRITICAL) {
diff --git a/plugins/check_ntp.c b/plugins/check_ntp.c
index 5ac6c65..914b40c 100644
--- a/plugins/check_ntp.c
+++ b/plugins/check_ntp.c
@@ -548,7 +548,7 @@ double jitter_request(const char *host, int *status){
548 DBG(print_ntp_control_message(&req)); 548 DBG(print_ntp_control_message(&req));
549 /* Attempt to read the largest size packet possible */ 549 /* Attempt to read the largest size packet possible */
550 req.count=htons(MAX_CM_SIZE); 550 req.count=htons(MAX_CM_SIZE);
551 DBG(printf("recieving READSTAT response")) 551 DBG(printf("receiving READSTAT response"))
552 read(conn, &req, SIZEOF_NTPCM(req)); 552 read(conn, &req, SIZEOF_NTPCM(req));
553 DBG(print_ntp_control_message(&req)); 553 DBG(print_ntp_control_message(&req));
554 /* Each peer identifier is 4 bytes in the data section, which 554 /* Each peer identifier is 4 bytes in the data section, which
@@ -608,7 +608,7 @@ double jitter_request(const char *host, int *status){
608 DBG(print_ntp_control_message(&req)); 608 DBG(print_ntp_control_message(&req));
609 609
610 req.count = htons(MAX_CM_SIZE); 610 req.count = htons(MAX_CM_SIZE);
611 DBG(printf("recieving READVAR response...\n")); 611 DBG(printf("receiving READVAR response...\n"));
612 read(conn, &req, SIZEOF_NTPCM(req)); 612 read(conn, &req, SIZEOF_NTPCM(req));
613 DBG(print_ntp_control_message(&req)); 613 DBG(print_ntp_control_message(&req));
614 614
diff --git a/plugins/check_ntp_peer.c b/plugins/check_ntp_peer.c
index c656b0f..6842842 100644
--- a/plugins/check_ntp_peer.c
+++ b/plugins/check_ntp_peer.c
@@ -245,7 +245,7 @@ int ntp_request(const char *host, double *offset, int *offset_result, double *ji
245 do { 245 do {
246 /* Attempt to read the largest size packet possible */ 246 /* Attempt to read the largest size packet possible */
247 req.count=htons(MAX_CM_SIZE); 247 req.count=htons(MAX_CM_SIZE);
248 DBG(printf("recieving READSTAT response")) 248 DBG(printf("receiving READSTAT response"))
249 if(read(conn, &req, SIZEOF_NTPCM(req)) == -1) 249 if(read(conn, &req, SIZEOF_NTPCM(req)) == -1)
250 die(STATE_CRITICAL, "NTP CRITICAL: No response from NTP server\n"); 250 die(STATE_CRITICAL, "NTP CRITICAL: No response from NTP server\n");
251 DBG(print_ntp_control_message(&req)); 251 DBG(print_ntp_control_message(&req));
diff --git a/plugins/check_pgsql.c b/plugins/check_pgsql.c
index 2eb699e..5cd4709 100644
--- a/plugins/check_pgsql.c
+++ b/plugins/check_pgsql.c
@@ -565,7 +565,7 @@ print_help (void)
565 565
566 printf (" %s\n", _("Typically, the monitoring user (unless the --logname option is used) should be")); 566 printf (" %s\n", _("Typically, the monitoring user (unless the --logname option is used) should be"));
567 printf (" %s\n", _("able to connect to the database without a password. The plugin can also send")); 567 printf (" %s\n", _("able to connect to the database without a password. The plugin can also send"));
568 printf (" %s\n", _("a password, but no effort is made to obsure or encrypt the password.")); 568 printf (" %s\n", _("a password, but no effort is made to obscure or encrypt the password."));
569 569
570 printf (UT_SUPPORT); 570 printf (UT_SUPPORT);
571} 571}
diff --git a/plugins/check_radius.c b/plugins/check_radius.c
index fe84b7c..be1001b 100644
--- a/plugins/check_radius.c
+++ b/plugins/check_radius.c
@@ -360,7 +360,7 @@ print_help (void)
360 printf (" %s\n", "-u, --username=STRING"); 360 printf (" %s\n", "-u, --username=STRING");
361 printf (" %s\n", _("The user to authenticate")); 361 printf (" %s\n", _("The user to authenticate"));
362 printf (" %s\n", "-p, --password=STRING"); 362 printf (" %s\n", "-p, --password=STRING");
363 printf (" %s\n", _("Password for autentication (SECURITY RISK)")); 363 printf (" %s\n", _("Password for authentication (SECURITY RISK)"));
364 printf (" %s\n", "-n, --nas-id=STRING"); 364 printf (" %s\n", "-n, --nas-id=STRING");
365 printf (" %s\n", _("NAS identifier")); 365 printf (" %s\n", _("NAS identifier"));
366 printf (" %s\n", "-N, --nas-ip-address=STRING"); 366 printf (" %s\n", "-N, --nas-ip-address=STRING");
diff --git a/plugins/check_real.c b/plugins/check_real.c
index 6491e6e..0f1a1ba 100644
--- a/plugins/check_real.c
+++ b/plugins/check_real.c
@@ -438,7 +438,7 @@ print_help (void)
438 printf ("%s\n", _("This plugin will attempt to open an RTSP connection with the host.")); 438 printf ("%s\n", _("This plugin will attempt to open an RTSP connection with the host."));
439 printf ("%s\n", _("Successul connects return STATE_OK, refusals and timeouts return")); 439 printf ("%s\n", _("Successul connects return STATE_OK, refusals and timeouts return"));
440 printf ("%s\n", _("STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects,")); 440 printf ("%s\n", _("STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects,"));
441 printf ("%s\n", _("but incorrect reponse messages from the host result in STATE_WARNING return")); 441 printf ("%s\n", _("but incorrect response messages from the host result in STATE_WARNING return"));
442 printf ("%s\n", _("values.")); 442 printf ("%s\n", _("values."));
443 443
444 printf (UT_SUPPORT); 444 printf (UT_SUPPORT);
diff --git a/plugins/check_smtp.c b/plugins/check_smtp.c
index 6e0e22e..0fcf4c6 100644
--- a/plugins/check_smtp.c
+++ b/plugins/check_smtp.c
@@ -835,7 +835,7 @@ print_help (void)
835 printf("\n"); 835 printf("\n");
836 printf ("%s\n", _("Successul connects return STATE_OK, refusals and timeouts return")); 836 printf ("%s\n", _("Successul connects return STATE_OK, refusals and timeouts return"));
837 printf ("%s\n", _("STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful")); 837 printf ("%s\n", _("STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful"));
838 printf ("%s\n", _("connects, but incorrect reponse messages from the host result in")); 838 printf ("%s\n", _("connects, but incorrect response messages from the host result in"));
839 printf ("%s\n", _("STATE_WARNING return values.")); 839 printf ("%s\n", _("STATE_WARNING return values."));
840 840
841 printf (UT_SUPPORT); 841 printf (UT_SUPPORT);
diff --git a/po/de.po b/po/de.po
index 51551ae..72694e2 100644
--- a/po/de.po
+++ b/po/de.po
@@ -704,7 +704,7 @@ msgstr "DNS CRITICAL - %s\n"
704#: plugins/check_dns.c:254 704#: plugins/check_dns.c:254
705#, fuzzy, c-format 705#, fuzzy, c-format
706msgid "DNS UNKNOWN - %s\n" 706msgid "DNS UNKNOWN - %s\n"
707msgstr "DNS UNKNOW - %s\n" 707msgstr "DNS UNKNOWN - %s\n"
708 708
709#: plugins/check_dns.c:267 709#: plugins/check_dns.c:267
710msgid "Note: nslookup is deprecated and may be removed from future releases." 710msgid "Note: nslookup is deprecated and may be removed from future releases."
@@ -852,7 +852,7 @@ msgstr "Konnte stderr nicht öffnen für: %s\n"
852#: plugins/check_fping.c:157 852#: plugins/check_fping.c:157
853#, fuzzy 853#, fuzzy
854msgid "FPING UNKNOWN - IP address not found\n" 854msgid "FPING UNKNOWN - IP address not found\n"
855msgstr "FPING UNKNOW - %s nicht gefunden\n" 855msgstr "FPING UNKNOWN - %s nicht gefunden\n"
856 856
857#: plugins/check_fping.c:160 857#: plugins/check_fping.c:160
858msgid "FPING UNKNOWN - invalid commandline argument\n" 858msgid "FPING UNKNOWN - invalid commandline argument\n"
@@ -861,12 +861,12 @@ msgstr ""
861#: plugins/check_fping.c:163 861#: plugins/check_fping.c:163
862#, fuzzy 862#, fuzzy
863msgid "FPING UNKNOWN - failed system call\n" 863msgid "FPING UNKNOWN - failed system call\n"
864msgstr "FPING UNKNOW - %s nicht gefunden\n" 864msgstr "FPING UNKNOWN - %s nicht gefunden\n"
865 865
866#: plugins/check_fping.c:187 866#: plugins/check_fping.c:187
867#, c-format 867#, c-format
868msgid "FPING UNKNOW - %s not found\n" 868msgid "FPING UNKNOWN - %s not found\n"
869msgstr "FPING UNKNOW - %s nicht gefunden\n" 869msgstr "FPING UNKNOWN - %s nicht gefunden\n"
870 870
871#: plugins/check_fping.c:191 871#: plugins/check_fping.c:191
872#, c-format 872#, c-format
@@ -876,7 +876,7 @@ msgstr "FPING CRITICAL - %s ist nicht erreichbar\n"
876#: plugins/check_fping.c:196 876#: plugins/check_fping.c:196
877#, fuzzy, c-format 877#, fuzzy, c-format
878msgid "FPING UNKNOWN - %s parameter error\n" 878msgid "FPING UNKNOWN - %s parameter error\n"
879msgstr "FPING UNKNOW - %s nicht gefunden\n" 879msgstr "FPING UNKNOWN - %s nicht gefunden\n"
880 880
881#: plugins/check_fping.c:200 plugins/check_fping.c:240 881#: plugins/check_fping.c:200 plugins/check_fping.c:240
882#, c-format 882#, c-format
@@ -1577,7 +1577,7 @@ msgstr ""
1577#: plugins/check_http.c:1545 1577#: plugins/check_http.c:1545
1578msgid "" 1578msgid ""
1579"other errors return STATE_UNKNOWN. Successful connects, but incorrect " 1579"other errors return STATE_UNKNOWN. Successful connects, but incorrect "
1580"reponse" 1580"response"
1581msgstr "" 1581msgstr ""
1582 1582
1583#: plugins/check_http.c:1546 1583#: plugins/check_http.c:1546
@@ -3636,7 +3636,7 @@ msgid ""
3636msgstr "" 3636msgstr ""
3637 3637
3638#: plugins/check_pgsql.c:568 3638#: plugins/check_pgsql.c:568
3639msgid "a password, but no effort is made to obsure or encrypt the password." 3639msgid "a password, but no effort is made to obscure or encrypt the password."
3640msgstr "" 3640msgstr ""
3641 3641
3642#: plugins/check_pgsql.c:601 3642#: plugins/check_pgsql.c:601
@@ -4169,7 +4169,7 @@ msgid "The user to authenticate"
4169msgstr "" 4169msgstr ""
4170 4170
4171#: plugins/check_radius.c:352 4171#: plugins/check_radius.c:352
4172msgid "Password for autentication (SECURITY RISK)" 4172msgid "Password for authentication (SECURITY RISK)"
4173msgstr "" 4173msgstr ""
4174 4174
4175#: plugins/check_radius.c:354 4175#: plugins/check_radius.c:354
@@ -4309,7 +4309,7 @@ msgstr ""
4309 4309
4310#: plugins/check_real.c:440 4310#: plugins/check_real.c:440
4311msgid "" 4311msgid ""
4312"but incorrect reponse messages from the host result in STATE_WARNING return" 4312"but incorrect response messages from the host result in STATE_WARNING return"
4313msgstr "" 4313msgstr ""
4314 4314
4315#: plugins/check_real.c:441 4315#: plugins/check_real.c:441
@@ -4530,7 +4530,7 @@ msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful"
4530msgstr "" 4530msgstr ""
4531 4531
4532#: plugins/check_smtp.c:832 4532#: plugins/check_smtp.c:832
4533msgid "connects, but incorrect reponse messages from the host result in" 4533msgid "connects, but incorrect response messages from the host result in"
4534msgstr "" 4534msgstr ""
4535 4535
4536#: plugins/check_smtp.c:833 4536#: plugins/check_smtp.c:833
diff --git a/po/fr.po b/po/fr.po
index d88dfe2..e44cf88 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -902,7 +902,7 @@ msgstr "PING INCONNU - Hôte non trouvé (%s)\n"
902 902
903#: plugins/check_fping.c:187 903#: plugins/check_fping.c:187
904#, c-format 904#, c-format
905msgid "FPING UNKNOW - %s not found\n" 905msgid "FPING UNKNOWN - %s not found\n"
906msgstr "PING INCONNU - Hôte non trouvé (%s)\n" 906msgstr "PING INCONNU - Hôte non trouvé (%s)\n"
907 907
908#: plugins/check_fping.c:191 908#: plugins/check_fping.c:191
@@ -1623,7 +1623,7 @@ msgstr ""
1623#: plugins/check_http.c:1545 1623#: plugins/check_http.c:1545
1624msgid "" 1624msgid ""
1625"other errors return STATE_UNKNOWN. Successful connects, but incorrect " 1625"other errors return STATE_UNKNOWN. Successful connects, but incorrect "
1626"reponse" 1626"response"
1627msgstr "" 1627msgstr ""
1628 1628
1629#: plugins/check_http.c:1546 1629#: plugins/check_http.c:1546
@@ -3700,7 +3700,7 @@ msgid ""
3700msgstr "" 3700msgstr ""
3701 3701
3702#: plugins/check_pgsql.c:568 3702#: plugins/check_pgsql.c:568
3703msgid "a password, but no effort is made to obsure or encrypt the password." 3703msgid "a password, but no effort is made to obscure or encrypt the password."
3704msgstr "" 3704msgstr ""
3705 3705
3706#: plugins/check_pgsql.c:601 3706#: plugins/check_pgsql.c:601
@@ -4246,7 +4246,7 @@ msgid "The user to authenticate"
4246msgstr "" 4246msgstr ""
4247 4247
4248#: plugins/check_radius.c:352 4248#: plugins/check_radius.c:352
4249msgid "Password for autentication (SECURITY RISK)" 4249msgid "Password for authentication (SECURITY RISK)"
4250msgstr "" 4250msgstr ""
4251 4251
4252#: plugins/check_radius.c:354 4252#: plugins/check_radius.c:354
@@ -4382,7 +4382,7 @@ msgstr ""
4382 4382
4383#: plugins/check_real.c:440 4383#: plugins/check_real.c:440
4384msgid "" 4384msgid ""
4385"but incorrect reponse messages from the host result in STATE_WARNING return" 4385"but incorrect response messages from the host result in STATE_WARNING return"
4386msgstr "" 4386msgstr ""
4387 4387
4388#: plugins/check_real.c:441 4388#: plugins/check_real.c:441
@@ -4600,7 +4600,7 @@ msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful"
4600msgstr "" 4600msgstr ""
4601 4601
4602#: plugins/check_smtp.c:832 4602#: plugins/check_smtp.c:832
4603msgid "connects, but incorrect reponse messages from the host result in" 4603msgid "connects, but incorrect response messages from the host result in"
4604msgstr "" 4604msgstr ""
4605 4605
4606#: plugins/check_smtp.c:833 4606#: plugins/check_smtp.c:833
diff --git a/po/monitoring-plugins.pot b/po/monitoring-plugins.pot
index 8f220e9..5bc2363 100644
--- a/po/monitoring-plugins.pot
+++ b/po/monitoring-plugins.pot
@@ -841,7 +841,7 @@ msgstr ""
841 841
842#: plugins/check_fping.c:187 842#: plugins/check_fping.c:187
843#, c-format 843#, c-format
844msgid "FPING UNKNOW - %s not found\n" 844msgid "FPING UNKNOWN - %s not found\n"
845msgstr "" 845msgstr ""
846 846
847#: plugins/check_fping.c:191 847#: plugins/check_fping.c:191
@@ -1528,7 +1528,7 @@ msgstr ""
1528#: plugins/check_http.c:1545 1528#: plugins/check_http.c:1545
1529msgid "" 1529msgid ""
1530"other errors return STATE_UNKNOWN. Successful connects, but incorrect " 1530"other errors return STATE_UNKNOWN. Successful connects, but incorrect "
1531"reponse" 1531"response"
1532msgstr "" 1532msgstr ""
1533 1533
1534#: plugins/check_http.c:1546 1534#: plugins/check_http.c:1546
@@ -3546,7 +3546,7 @@ msgid ""
3546msgstr "" 3546msgstr ""
3547 3547
3548#: plugins/check_pgsql.c:568 3548#: plugins/check_pgsql.c:568
3549msgid "a password, but no effort is made to obsure or encrypt the password." 3549msgid "a password, but no effort is made to obscure or encrypt the password."
3550msgstr "" 3550msgstr ""
3551 3551
3552#: plugins/check_pgsql.c:601 3552#: plugins/check_pgsql.c:601
@@ -4070,7 +4070,7 @@ msgid "The user to authenticate"
4070msgstr "" 4070msgstr ""
4071 4071
4072#: plugins/check_radius.c:352 4072#: plugins/check_radius.c:352
4073msgid "Password for autentication (SECURITY RISK)" 4073msgid "Password for authentication (SECURITY RISK)"
4074msgstr "" 4074msgstr ""
4075 4075
4076#: plugins/check_radius.c:354 4076#: plugins/check_radius.c:354
@@ -4203,7 +4203,7 @@ msgstr ""
4203 4203
4204#: plugins/check_real.c:440 4204#: plugins/check_real.c:440
4205msgid "" 4205msgid ""
4206"but incorrect reponse messages from the host result in STATE_WARNING return" 4206"but incorrect response messages from the host result in STATE_WARNING return"
4207msgstr "" 4207msgstr ""
4208 4208
4209#: plugins/check_real.c:441 4209#: plugins/check_real.c:441
@@ -4417,7 +4417,7 @@ msgid "STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful"
4417msgstr "" 4417msgstr ""
4418 4418
4419#: plugins/check_smtp.c:832 4419#: plugins/check_smtp.c:832
4420msgid "connects, but incorrect reponse messages from the host result in" 4420msgid "connects, but incorrect response messages from the host result in"
4421msgstr "" 4421msgstr ""
4422 4422
4423#: plugins/check_smtp.c:833 4423#: plugins/check_smtp.c:833