Commit e148e58d authored by Antoine Cellerier's avatar Antoine Cellerier

Oops.

parent defde1c8
...@@ -807,11 +807,11 @@ void filename_sanitize( char *str ) ...@@ -807,11 +807,11 @@ void filename_sanitize( char *str )
case '\\': case '\\':
case '*': case '*':
case '"': case '"':
case "?": case '?':
case ':': case ':':
case '|': case '|':
case '<': case '<':
case '>' case '>':
#endif #endif
*str = '_'; *str = '_';
} }
...@@ -831,11 +831,11 @@ void path_sanitize( char *str ) ...@@ -831,11 +831,11 @@ void path_sanitize( char *str )
{ {
case '*': case '*':
case '"': case '"':
case "?": case '?':
case ':': case ':':
case '|': case '|':
case '<': case '<':
case '>' case '>':
*str = '_'; *str = '_';
} }
str++; str++;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment