From: Mark Spencer Date: Sun, 4 Apr 2004 22:14:10 +0000 (+0000) Subject: Recognize + as a valid part of a phone number X-Git-Tag: 1.0.0-rc1~799 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d051e2da43821cce9ee0bde032945665d31d0e57;p=thirdparty%2Fasterisk.git Recognize + as a valid part of a phone number git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2617 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/callerid.c b/callerid.c index ff4fdb5207..3f3e2f7521 100755 --- a/callerid.c +++ b/callerid.c @@ -511,7 +511,7 @@ int ast_isphonenumber(char *n) if (!n || !strlen(n)) return 0; for (x=0;n[x];x++) - if (!strchr("0123456789*#", n[x])) + if (!strchr("0123456789*#+", n[x])) return 0; return 1; }