[Asterisk-cvs] asterisk/channels chan_sip.c,1.510.2.55,1.510.2.56
russell at lists.digium.com
russell at lists.digium.com
Mon Mar 28 00:48:23 CST 2005
Update of /usr/cvsroot/asterisk/channels
In directory mongoose.digium.com:/tmp/cvs-serv806/channels
Modified Files:
Tag: v1-0
chan_sip.c
Log Message:
change ',' to '.' (bug #3799)
Index: chan_sip.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_sip.c,v
retrieving revision 1.510.2.55
retrieving revision 1.510.2.56
diff -u -d -r1.510.2.55 -r1.510.2.56
--- chan_sip.c 28 Mar 2005 06:35:09 -0000 1.510.2.55
+++ chan_sip.c 28 Mar 2005 06:42:14 -0000 1.510.2.56
@@ -3865,7 +3865,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