aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_mgcp.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-03-24 22:20:28 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-03-24 22:20:28 +0000
commit757391b291242684f3f34696b7cad3274e19d097 (patch)
treef094f096a742fd59196dccf5583a917011cdee8a /channels/chan_mgcp.c
parentd279746b29794d4e1a88579519e6b515522c5ab9 (diff)
More specifics in MGCP
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@684 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/chan_mgcp.c')
-rwxr-xr-xchannels/chan_mgcp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/chan_mgcp.c b/channels/chan_mgcp.c
index 8f4a76150..fdf6e1dba 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);
}