summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2008-05-18 19:58:10 +0000
committerRussell Bryant <russell@russellbryant.com>2008-05-18 19:58:10 +0000
commit29a9d477df1ea3613a17a118ff7751914b1b492b (patch)
tree2099d021386bfd1617386b1240b01d659fa62c4a
parent4943cbcf2c33dc281a888c58a44bc95810251fcf (diff)
Remove duplicate colon on Reason header
(closes issue #12678) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@116919 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--channels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index bad96503e..e879428d7 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -9925,7 +9925,7 @@ static int transmit_request(struct sip_pvt *p, int sipmethod, int seqno, enum xm
reqprep(&resp, p, sipmethod, seqno, newbranch);
if (sipmethod == SIP_CANCEL && p->answered_elsewhere)
- add_header(&resp, "Reason:", "SIP;cause=200;text=\"Call completed elsewhere\"");
+ add_header(&resp, "Reason", "SIP;cause=200;text=\"Call completed elsewhere\"");
add_header_contentLength(&resp, 0);
return send_request(p, &resp, reliable, seqno ? seqno : p->ocseq);