summaryrefslogtreecommitdiff
path: root/apps/app_directed_pickup.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2006-02-23 23:12:41 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2006-02-23 23:12:41 +0000
commit53936916ec5cc8f73fd863934b7f2d2a32119b94 (patch)
tree24202e7bc10859a618b871e519d945ed1744b857 /apps/app_directed_pickup.c
parenta4734960e7373b76255299766f7f47fcf0e7d65a (diff)
Bug 6417 - Allow retrieval of raw CDR values
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@10953 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_directed_pickup.c')
-rw-r--r--apps/app_directed_pickup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_directed_pickup.c b/apps/app_directed_pickup.c
index 3255ade9f..632ac326d 100644
--- a/apps/app_directed_pickup.c
+++ b/apps/app_directed_pickup.c
@@ -82,7 +82,7 @@ static int pickup_exec(struct ast_channel *chan, void *data)
origin = ast_get_channel_by_exten_locked(exten, context);
if (origin) {
ast_cdr_getvar(origin->cdr, "dstchannel", &tmp, workspace,
- sizeof(workspace), 0);
+ sizeof(workspace), 0, 0);
if (tmp) {
/* We have a possible channel... now we need to find it! */
target = ast_get_channel_by_name_locked(tmp);