From: Mark Spencer Date: Mon, 24 Mar 2003 22:20:28 +0000 (+0000) Subject: More specifics in MGCP X-Git-Tag: 0.4.0~154 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a98ed49b0cd0c376af83df2030b82e00135c64b2;p=thirdparty%2Fasterisk.git More specifics in MGCP git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@684 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_mgcp.c b/channels/chan_mgcp.c index 8f4a761507..fdf6e1dbad 100755 --- a/channels/chan_mgcp.c +++ b/channels/chan_mgcp.c @@ -1249,9 +1249,9 @@ static int transmit_notify_request_with_callerid(struct mgcp_endpoint *p, char * reqprep(&resp, p, "RQNT"); add_header(&resp, "X", p->txident); if (offhook) - add_header(&resp, "R", "hu(N),hf(N),D/[0-9#*](N)"); + add_header(&resp, "R", "L/hu(N),L/hf(N),D/[0-9#*](N)"); else - add_header(&resp, "R", "hd(N)"); + add_header(&resp, "R", "L/hd(N)"); add_header(&resp, "S", tone2); return send_request(p, &resp, oseq); }