]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
change ',' to '.' (bug #3799)
authorRussell Bryant <russell@russellbryant.com>
Mon, 28 Mar 2005 06:42:14 +0000 (06:42 +0000)
committerRussell Bryant <russell@russellbryant.com>
Mon, 28 Mar 2005 06:42:14 +0000 (06:42 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@5288 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_sip.c

index ed1a1179dd29b487a734fd3f355adba7a098bcc2..4a84114e2ef722968d8f0ed1302017ddc1d0411c 100755 (executable)
@@ -3865,7 +3865,7 @@ static int transmit_state_notify(struct sip_pvt *p, int state, int full)
                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");