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

Support French Caller*ID

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1284 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 385647af
Branches
Tags
No related merge requests found
...@@ -274,6 +274,8 @@ int callerid_feed(struct callerid_state *cid, unsigned char *ubuf, int len, int ...@@ -274,6 +274,8 @@ int callerid_feed(struct callerid_state *cid, unsigned char *ubuf, int len, int
memcpy(cid->name, cid->rawdata + x + 1, res); memcpy(cid->name, cid->rawdata + x + 1, res);
cid->name[res] = '\0'; cid->name[res] = '\0';
break; break;
case 22: /* Something French */
break;
default: default:
ast_log(LOG_NOTICE, "Unknown IE %d\n", cid->rawdata[x-1]); ast_log(LOG_NOTICE, "Unknown IE %d\n", cid->rawdata[x-1]);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment