aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-01-09 18:02:08 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-01-09 18:02:08 +0000
commit0a025b8beee0237743ec0693269fb63d317be5c5 (patch)
treee4b3861cad1dbffc361cde4177416500dc7881cf /res
parent5df50b6d080fda7faf4c4279b619b947ad7b9147 (diff)
Fix saying the parking space number to the caller doing the parking ...
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@97529 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-rw-r--r--res/res_features.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_features.c b/res/res_features.c
index 2a65b90a2..5eaa5b2e3 100644
--- a/res/res_features.c
+++ b/res/res_features.c
@@ -1835,7 +1835,7 @@ static int park_call_exec(struct ast_channel *chan, void *data)
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));