[asterisk-commits] qwell: trunk r79888 - /trunk/pbx/pbx_dundi.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Aug 17 10:27:20 CDT 2007


Author: qwell
Date: Fri Aug 17 10:27:19 2007
New Revision: 79888

URL: http://svn.digium.com/view/asterisk?view=rev&rev=79888
Log:
Correct the argument separator for a Dial statement in pbx_dundi.

Closes issue #10483, patch by lunn

Modified:
    trunk/pbx/pbx_dundi.c

Modified: trunk/pbx/pbx_dundi.c
URL: http://svn.digium.com/view/asterisk/trunk/pbx/pbx_dundi.c?view=diff&rev=79888&r1=79887&r2=79888
==============================================================================
--- trunk/pbx/pbx_dundi.c (original)
+++ trunk/pbx/pbx_dundi.c Fri Aug 17 10:27:19 2007
@@ -4530,7 +4530,7 @@
 	if (x < res) {
 		/* Got a hit! */
 		dundiargs = pbx_builtin_getvar_helper(chan, "DUNDIDIALARGS");
-		snprintf(req, sizeof(req), "%s/%s||%s", results[x].tech, results[x].dest, 
+		snprintf(req, sizeof(req), "%s/%s,,%s", results[x].tech, results[x].dest, 
 			S_OR(dundiargs, ""));
 		dial = pbx_findapp("Dial");
 		if (dial)




More information about the asterisk-commits mailing list