summaryrefslogtreecommitdiff
path: root/callerid.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2003-08-09 23:57:54 +0000
committerMark Spencer <markster@digium.com>2003-08-09 23:57:54 +0000
commit785958db53e1a4bb7dec2fbe289b11903959962c (patch)
treeb2045f75ae17096932ea0e7fe8cb0fb4b5c576ce /callerid.c
parent385647af43c5fcaedd2b87e265d0dba597b32aab (diff)
Support French Caller*ID
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1284 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'callerid.c')
-rwxr-xr-xcallerid.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/callerid.c b/callerid.c
index d1a8545f4..984e449e2 100755
--- a/callerid.c
+++ b/callerid.c
@@ -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);
cid->name[res] = '\0';
break;
+ case 22: /* Something French */
+ break;
default:
ast_log(LOG_NOTICE, "Unknown IE %d\n", cid->rawdata[x-1]);
}