From ec6e4f6887d51a3d27695a2056863974f9e316a0 Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Sat, 17 Feb 2007 03:55:30 +0000 Subject: [PATCH] Merged revisions 55153 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r55153 | file | 2007-02-16 22:53:45 -0500 (Fri, 16 Feb 2007) | 2 lines Answer the channel before recording privacy information. (issue #8926 reported by lmamane) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@55154 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_dial.c | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/app_dial.c b/apps/app_dial.c index a585cfaa96..21362443ff 100644 --- a/apps/app_dial.c +++ b/apps/app_dial.c @@ -1034,6 +1034,7 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags "At the tone, please say your name:" */ + ast_answer(chan); res = ast_play_and_record(chan, "priv-recordintro", privintro, 4, "gsm", &duration, 128, 2000, 0); /* NOTE: I've reduced the total time to 4 sec */ /* don't think we'll need a lock removed, we took care of conflicts by naming the privintro file */