Fix confusion between a-characters and d-characters

Submitted by:	avg
Approved by:	cognet
This commit is contained in:
Baptiste Daroussin 2011-03-24 12:04:42 +00:00
parent 92b7c16c73
commit b880379bb8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=219954

View File

@ -59,7 +59,7 @@ cd9660_is_a_char(char c)
{
return (isupper((unsigned char)c)
|| c == '_'
|| (c >= '0' && c <= '?'));
|| (c >= '0' && c <= '9'));
}
static inline int
@ -67,7 +67,7 @@ cd9660_is_d_char(char c)
{
return (isupper((unsigned char)c)
|| c == '_'
|| (c >= '%' && c <= '9')
|| (c >= '%' && c <= '?')
|| (c >= ' ' && c <= '\"'));
}