mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-05-28 04:35:40 -04:00
plugins/runcmd.c: Remove superfluous newline
The puts(3) function already appends a newline character to the string.
This commit is contained in:
parent
f0b22b37f9
commit
b63974c2cb
1 changed files with 1 additions and 1 deletions
|
|
@ -261,7 +261,7 @@ runcmd_timeout_alarm_handler (int signo)
|
|||
size_t i;
|
||||
|
||||
if (signo == SIGALRM)
|
||||
puts(_("CRITICAL - Plugin timed out while executing system call\n"));
|
||||
puts(_("CRITICAL - Plugin timed out while executing system call"));
|
||||
|
||||
if(np_pids) for(i = 0; i < maxfd; i++) {
|
||||
if(np_pids[i] != 0) kill(np_pids[i], SIGKILL);
|
||||
|
|
|
|||
Loading…
Reference in a new issue