From 42b84afa40a361727a74fc30c40c8d8ce3f59944 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Mon, 28 Mar 2005 06:42:14 +0000 Subject: [PATCH] change ',' to '.' (bug #3799) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@5288 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_sip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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");