[Asterisk-cvs] asterisk/channels chan_sip.c,1.682,1.683

markster at lists.digium.com markster at lists.digium.com
Sat Mar 19 20:53:45 CST 2005


Update of /usr/cvsroot/asterisk/channels
In directory mongoose.digium.com:/tmp/cvs-serv15513/channels

Modified Files:
	chan_sip.c 
Log Message:
Fix "," to "." notation.


Index: chan_sip.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_sip.c,v
retrieving revision 1.682
retrieving revision 1.683
diff -u -d -r1.682 -r1.683
--- chan_sip.c	20 Mar 2005 00:49:31 -0000	1.682
+++ chan_sip.c	20 Mar 2005 02:48:41 -0000	1.683
@@ -4190,7 +4190,7 @@
 		bytes = snprintf(t, maxbytes, "<atom id=\"%s\">\n", p->exten);
 		t += bytes;
 		maxbytes -= bytes;
-		bytes = snprintf(t, maxbytes, "<address uri=\"%s;user=ip\" priority=\"0,800000\">\n", mto);
+		bytes = snprintf(t, maxbytes, "<address uri=\"%s;user=ip\" priority=\"0.800000\">\n", mto);
 		t += bytes;
 		maxbytes -= bytes;
 		bytes = snprintf(t, maxbytes, "<status status=\"%s\" />\n", !state ? "open" : (state==1) ? "inuse" : "closed");




More information about the svn-commits mailing list