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:27 +00:00
parent e4fcaf9638
commit 2e3fb97a12

View file

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