Adding double quote as illegal character in Windows file names,

...thanks to ilor for pointing this out.
This commit is contained in:
Thomas Baumhauer 2008-05-22 09:56:53 +00:00
parent ef2b0a21c4
commit c1c8a2c94c

View file

@ -225,7 +225,7 @@ bool is_illegal_file_char(char c)
{
return c == '/' || c == '\\' || c == ':'
#ifdef WIN32
|| c == '?' || c == '|' || c == '<' || c == '>' || c == '*'
|| c == '?' || c == '|' || c == '<' || c == '>' || c == '*' || c == '"'
#endif
;
}