[asterisk-commits] oej: branch 1.4 r126735 - /branches/1.4/channels/chan_sip.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Jul 1 02:49:16 CDT 2008
Author: oej
Date: Tue Jul 1 02:49:15 2008
New Revision: 126735
URL: http://svn.digium.com/view/asterisk?view=rev&rev=126735
Log:
Fix bad XML for hold notification.
Reported by: gowen72
Patches:
hold.patch uploaded by gowen72 (license 432)
(closes issue #12942)
Modified:
branches/1.4/channels/chan_sip.c
Modified: branches/1.4/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_sip.c?view=diff&rev=126735&r1=126734&r2=126735
==============================================================================
--- branches/1.4/channels/chan_sip.c (original)
+++ branches/1.4/channels/chan_sip.c Tue Jul 1 02:49:15 2008
@@ -7372,7 +7372,7 @@
ast_build_string(&t, &maxbytes, "<state>%s</state>\n", statestring);
if (state == AST_EXTENSION_ONHOLD) {
ast_build_string(&t, &maxbytes, "<local>\n<target uri=\"%s\">\n"
- "<param pname=\"+sip.rendering\" pvalue=\"no\">\n"
+ "<param pname=\"+sip.rendering\" pvalue=\"no\"/>\n"
"</target>\n</local>\n", mto);
}
ast_build_string(&t, &maxbytes, "</dialog>\n</dialog-info>\n");
More information about the asterisk-commits
mailing list