summaryrefslogtreecommitdiff
path: root/channels/chan_sip.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2005-03-20 02:48:41 +0000
committerMark Spencer <markster@digium.com>2005-03-20 02:48:41 +0000
commit5c3c5fb65cf9f885b3ccf0b81453ba7a3dc59e15 (patch)
tree34d1e30c19d4a607907f555cb5f16f1fb8d87bcd /channels/chan_sip.c
parent7353c879b09ef610acc1906831c428945abfb7c9 (diff)
Fix "," to "." notation.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5210 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/chan_sip.c')
-rwxr-xr-xchannels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 027704591..d9e51a56f 100755
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -4190,7 +4190,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");