From e688dbc2151ac682a72b257744c1a78a32f48ac2 Mon Sep 17 00:00:00 2001 From: markster Date: Fri, 22 Oct 2004 13:08:35 +0000 Subject: Fix the shrink_number to not remove the trailing '.' git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4042 f38db490-d61c-443f-a65b-d21fe96a405b --- callerid.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/callerid.c b/callerid.c index 7fd064114..b5b55e14f 100755 --- a/callerid.c +++ b/callerid.c @@ -589,8 +589,12 @@ void ast_shrink_phone_number(char *n) if (bracketed) n[y++] = n[x]; break; + case '.': + if (!n[x+1]) + n[y++] = n[x]; + break; default: - if (!strchr("( ).", n[x])) + if (!strchr("( )", n[x])) n[y++] = n[x]; } } -- cgit v1.2.3