[asterisk-commits] russell: branch 1.4 r97529 - /branches/1.4/res/res_features.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Jan 9 12:02:09 CST 2008
Author: russell
Date: Wed Jan 9 12:02:08 2008
New Revision: 97529
URL: http://svn.digium.com/view/asterisk?view=rev&rev=97529
Log:
Fix saying the parking space number to the caller doing the parking ...
Modified:
branches/1.4/res/res_features.c
Modified: branches/1.4/res/res_features.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/res/res_features.c?view=diff&rev=97529&r1=97528&r2=97529
==============================================================================
--- branches/1.4/res/res_features.c (original)
+++ branches/1.4/res/res_features.c Wed Jan 9 12:02:08 2008
@@ -1835,7 +1835,7 @@
res = ast_safe_sleep(chan, 1000);
/* Park the call */
if (!res) {
- res = park_call_full(chan, NULL, 0, NULL, orig_chan_name);
+ res = park_call_full(chan, chan, 0, NULL, orig_chan_name);
/* Continue on in the dialplan */
if (res == 1) {
ast_copy_string(chan->exten, orig_exten, sizeof(chan->exten));
More information about the asterisk-commits
mailing list