* and # are potentially parts of phone numbers

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1455 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2003-09-01 15:59:57 +00:00
parent 03373895c2
commit 193f6631be

View File

@@ -508,7 +508,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;
}