pescuma / miranda-plugins

Some Miranda IM plugins
2 stars 1 forks source link

MSN folder name #150

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Avatar History, ConvertToFilename:

void ConvertToFilename(char *str, size_t size) {
    for(size_t i = 0; i < size && str[i] != '\0'; i++) {
        switch(str[i]) {
            case '/':
            case '\\':
            case ':':
            case '*':
            case '?':
            case '"':
            case '<':
            case '>':
            case '|':
            case '.':
                str[i] = '_';
        }
    }
}

The case '.' is unneeded, it just messes up MSN-emails

Original issue reported on code.google.com by wishmaster51 on 24 Jul 2011 at 1:33

GoogleCodeExporter commented 9 years ago

Original comment by pescuma on 13 Aug 2011 at 4:19

GoogleCodeExporter commented 9 years ago

Original comment by wishmaster51 on 21 Mar 2012 at 12:30