aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-03-20 02:48:41 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-03-20 02:48:41 +0000
commit5eadf56c9f287744415ec0a1c8d7865f33b69eec (patch)
tree34d1e30c19d4a607907f555cb5f16f1fb8d87bcd /channels
parentcf1f6f0d19cbd56effec71659a02f5df37968391 (diff)
Fix "," to "." notation.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5210 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-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");