mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-15 10:17:20 +00:00
Fix confusion between a-characters and d-characters
Submitted by: avg Approved by: cognet
This commit is contained in:
parent
92b7c16c73
commit
b880379bb8
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=219954
@ -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 <= '\"'));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user