aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-05-18 19:58:10 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-05-18 19:58:10 +0000
commit53e5a0494829dc01c4ed4da3b6a91af0ad3dc7cb (patch)
tree2099d021386bfd1617386b1240b01d659fa62c4a
parent244af566c78dd6a8341265c5dd463dc4c5518e33 (diff)
Remove duplicate colon on Reason header
(closes issue #12678) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@116919 f38db490-d61c-443f-a65b-d21fe96a405b
-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);