summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorJeremy McNamara <jj@nufone.net>2004-01-11 03:31:30 +0000
committerJeremy McNamara <jj@nufone.net>2004-01-11 03:31:30 +0000
commit6ae49b9ccd44d18d6a170fcf0433b5bc6c08c941 (patch)
tree0a49a06dbf6e29b6aa10d37dd828af314f3a300a /res
parent548860bce0ff28b9307b78c38b56cbda9207a81b (diff)
Don't core on mpg123. Bug #671
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1928 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res')
-rwxr-xr-xres/res_musiconhold.c2
1 files changed, 1 insertions, 1 deletions
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;
}