projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7353c87
)
Fix "," to "." notation.
author
Mark Spencer
<markster@digium.com>
Sun, 20 Mar 2005 02:48:41 +0000
(
02:48
+0000)
committer
Mark Spencer
<markster@digium.com>
Sun, 20 Mar 2005 02:48:41 +0000
(
02:48
+0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5210
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
channels/chan_sip.c
patch
|
blob
|
history
diff --git
a/channels/chan_sip.c
b/channels/chan_sip.c
index
0277045
..
d9e51a5
100755
(executable)
--- 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");