Index: res_musiconhold.c =================================================================== RCS file: /usr/cvsroot/asterisk/res/res_musiconhold.c,v retrieving revision 1.17 diff -u -r1.17 res_musiconhold.c --- res_musiconhold.c 4 Nov 2003 23:23:00 -0000 1.17 +++ res_musiconhold.c 13 Dec 2003 08:22:42 -0000 @@ -586,7 +586,7 @@ if (moh->pid) { ast_log(LOG_DEBUG, "killing %d!\n", moh->pid); stime = time(NULL); - kill(moh->pid, SIGABRT); + kill(moh->pid, SIGKILL); while ((bytes = read(moh->srcfd, buff, 8192)) && time(NULL) < stime + 5) { tbytes = tbytes + bytes; }