<dt>Remove all unsafe characters from filename
<dd>If checked, all characters that could possibly cause problems for filenaming will be replaced with '_'.<br>
Applies to characters:<br>
- * not supported by Windows characters: <i>/ : \ < > | * ? ' "</i><br>
+ * not supported by Windows characters: <i>/ : \ < > | * ? "</i><br>
* control characters (ASCII code below 32)<br>
* control and national characters (ASCII code above 122)<br>
<dt>Use Windows-compatible filenames
<dd>If checked:<br>
- * special characters not supported by Windows like: <i>/ : \ < > | * ? ' "</i> will be replaced with '_'<br>
+ * special characters not supported by Windows like: <i>/ : \ < > | * ? "</i> will be replaced with '_'<br>
* trailing spaces ' ' and dots '.' will be removed
</dl>
(strchr("/:\\<>|*?'\"", s[i]) != NULL)))
s[i] = '_';
else if(cfg->dvr_windows_compatible_filenames &&
- (strchr("/:\\<>|*?'\"", s[i]) != NULL))
+ (strchr("/:\\<>|*?\"", s[i]) != NULL))
s[i] = '_';
}