diff options
| -rw-r--r-- | plugins/netutils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/netutils.c b/plugins/netutils.c index f9933ebd..29b31366 100644 --- a/plugins/netutils.c +++ b/plugins/netutils.c | |||
| @@ -46,9 +46,9 @@ void socket_timeout_alarm_handler(int sig) { | |||
| 46 | timeout_sc = mp_set_subcheck_state(timeout_sc, socket_timeout_state); | 46 | timeout_sc = mp_set_subcheck_state(timeout_sc, socket_timeout_state); |
| 47 | 47 | ||
| 48 | if (sig == SIGALRM) { | 48 | if (sig == SIGALRM) { |
| 49 | xasprintf(&timeout_sc.output, _("Socket timeout after %d seconds\n"), socket_timeout); | 49 | xasprintf(&timeout_sc.output, _("Socket timeout after %d seconds"), socket_timeout); |
| 50 | } else { | 50 | } else { |
| 51 | xasprintf(&timeout_sc.output, _("Abnormal timeout after %d seconds\n"), socket_timeout); | 51 | xasprintf(&timeout_sc.output, _("Abnormal timeout after %d seconds"), socket_timeout); |
| 52 | } | 52 | } |
| 53 | 53 | ||
| 54 | mp_check overall = mp_check_init(); | 54 | mp_check overall = mp_check_init(); |
