]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
More specifics in MGCP
authorMark Spencer <markster@digium.com>
Mon, 24 Mar 2003 22:20:28 +0000 (22:20 +0000)
committerMark Spencer <markster@digium.com>
Mon, 24 Mar 2003 22:20:28 +0000 (22:20 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@684 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_mgcp.c

index 8f4a7615071f7e588190f7236a88ba0516dc6c5d..fdf6e1dbad4d43ea5df025e453ad139b3b04d93a 100755 (executable)
@@ -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);
 }