From ac3b35dcc792329046ec2532ff204962c895ee98 Mon Sep 17 00:00:00 2001 From: russell Date: Fri, 26 Jun 2009 15:28:53 +0000 Subject: Merge the new Channel Event Logging (CEL) subsystem. CEL is the new system for logging channel events. This was inspired after facing many problems trying to represent what is possible to happen to a call in Asterisk using CDR records. For more information on CEL, see the built in HTML or PDF documentation generated from the files in doc/tex/. Many thanks to Steve Murphy (murf) and Brian Degenhardt (bmd) for their hard work developing this code. Also, thanks to Matt Nicholson (mnicholson) and Sean Bright (seanbright) for their assistance in the final push to get this code ready for Asterisk trunk. Review: https://reviewboard.asterisk.org/r/239/ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@203638 f38db490-d61c-443f-a65b-d21fe96a405b --- bridges/bridge_builtin_features.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bridges') diff --git a/bridges/bridge_builtin_features.c b/bridges/bridge_builtin_features.c index a61421c79..67da6489b 100644 --- a/bridges/bridge_builtin_features.c +++ b/bridges/bridge_builtin_features.c @@ -75,7 +75,7 @@ static struct ast_channel *dial_transfer(const struct ast_channel *caller, const snprintf(destination, sizeof(destination), "%s@%s", exten, context); /* Now we request that chan_local prepare to call the destination */ - if (!(chan = ast_request("Local", caller->nativeformats, destination, &cause))) { + if (!(chan = ast_request("Local", caller->nativeformats, caller, destination, &cause))) { return NULL; } -- cgit v1.2.3