From: Russell Bryant Date: Mon, 28 Mar 2005 06:42:14 +0000 (+0000) Subject: change ',' to '.' (bug #3799) X-Git-Tag: 1.0.11.1~187 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=42b84afa40a361727a74fc30c40c8d8ce3f59944;p=thirdparty%2Fasterisk.git change ',' to '.' (bug #3799) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@5288 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index ed1a1179dd..4a84114e2e 100755 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -3865,7 +3865,7 @@ static int transmit_state_notify(struct sip_pvt *p, int state, int full) bytes = snprintf(t, maxbytes, "\n", p->exten); t += bytes; maxbytes -= bytes; - bytes = snprintf(t, maxbytes, "
\n", mto); + bytes = snprintf(t, maxbytes, "
\n", mto); t += bytes; maxbytes -= bytes; bytes = snprintf(t, maxbytes, "\n", !state ? "open" : (state==1) ? "inuse" : "closed");