brucexs wrote:
> static void RemoveNonFileChars(unsigned char* sz)
> {
> while(*sz)
> {
> if (*sz=='*')
> *sz = '+';
> else if (*sz !='!' && strchr(vNoFileNameChars, *sz)
>||*sz<' ')
> *sz = '_';
> sz++;
> }
> }Thank you Bruce! However, something's missing from above near else if...
