From 4942b0387816dab43722766fb2b31ac4664cb5d0 Mon Sep 17 00:00:00 2001 From: jeremy Date: Sun, 11 Jan 2004 03:31:30 +0000 Subject: Don't core on mpg123. Bug #671 git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1928 f38db490-d61c-443f-a65b-d21fe96a405b --- res/res_musiconhold.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'res') diff --git a/res/res_musiconhold.c b/res/res_musiconhold.c index f6a3d5b01..2ff101e1c 100755 --- a/res/res_musiconhold.c +++ b/res/res_musiconhold.c @@ -586,7 +586,7 @@ static void ast_moh_destroy(void) 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; } -- cgit v1.2.3