[asterisk-commits] russell: branch 1.6.0 r189984 - in /branches/1.6.0: ./ main/features.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Apr 22 12:57:40 CDT 2009
Author: russell
Date: Wed Apr 22 12:57:32 2009
New Revision: 189984
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=189984
Log:
Merged revisions 189951 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r189951 | russell | 2009-04-22 11:56:43 -0500 (Wed, 22 Apr 2009) | 2 lines
Fix call parking callback. Pipes -> Commas.
........
Modified:
branches/1.6.0/ (props changed)
branches/1.6.0/main/features.c
Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.0/main/features.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.0/main/features.c?view=diff&rev=189984&r1=189983&r2=189984
==============================================================================
--- branches/1.6.0/main/features.c (original)
+++ branches/1.6.0/main/features.c Wed Apr 22 12:57:32 2009
@@ -2774,9 +2774,9 @@
if (dialfeatures) {
char buf[MAX_DIAL_FEATURE_OPTIONS] = {0,};
- snprintf(returnexten, sizeof(returnexten), "%s|30|%s", peername, callback_dialoptions(&(dialfeatures->features_callee), &(dialfeatures->features_caller), buf, sizeof(buf)));
+ snprintf(returnexten, sizeof(returnexten), "%s,30,%s", peername, callback_dialoptions(&(dialfeatures->features_callee), &(dialfeatures->features_caller), buf, sizeof(buf)));
} else { /* Existing default */
- snprintf(returnexten, sizeof(returnexten), "%s|30|t", peername);
+ snprintf(returnexten, sizeof(returnexten), "%s,30,t", peername);
}
ast_add_extension2(con, 1, peername_flat, 1, NULL, NULL, "Dial", ast_strdup(returnexten), ast_free_ptr, registrar);
}
More information about the asterisk-commits
mailing list