Skip to content
Snippets Groups Projects
Commit b1e0f0f1 authored by Mark Spencer's avatar Mark Spencer
Browse files

Handle oddly sent 'A' to 'D' (bug #3445)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4906 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 976bdba2
No related branches found
No related tags found
No related merge requests found
......@@ -6413,6 +6413,8 @@ static void receive_info(struct sip_pvt *p, struct sip_request *req)
event = 10;
else if (buf[0] == '#')
event = 11;
else if ((buf[0] >= 'A') && (buf[0] <= 'D'))
event = 12 + buf[0] - 'A';
else
event = atoi(buf);
if (event < 10) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment