diff --git a/kernel/utility.c b/kernel/utility.c index 3faef77d8..64520b20e 100755 --- a/kernel/utility.c +++ b/kernel/utility.c @@ -141,7 +141,9 @@ int c; /* character to append */ } else { int p, outprocs[] = OUTPUT_PROCS_ARRAY; for(p = 0; outprocs[p] != NONE; p++) { - send_sig(outprocs[p], SIGKMESS); + if(isokprocn(outprocs[p]) && !isemptyn(outprocs[p])) { + send_sig(outprocs[p], SIGKMESS); + } } } }