2009-11-16 Felix Zielcke <fzielcke@z-51.de>
* util/mkisofs/name.c (FDECL3): Use isascii macro instead of relying that char is signed.
This commit is contained in:
parent
a691ca3348
commit
73fb3dd5f0
2 changed files with 7 additions and 2 deletions
|
@ -213,7 +213,7 @@ int FDECL3(iso9660_file_length,
|
|||
}
|
||||
if(current_length < 30)
|
||||
{
|
||||
if( *pnt < 0 )
|
||||
if( !isascii (*pnt))
|
||||
{
|
||||
*result++ = '_';
|
||||
}
|
||||
|
@ -281,7 +281,7 @@ int FDECL3(iso9660_file_length,
|
|||
switch (*pnt)
|
||||
{
|
||||
default:
|
||||
if( *pnt < 0 )
|
||||
if( !isascii (*pnt) )
|
||||
{
|
||||
*result++ = '_';
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue