View | Details | Raw Unified | Return to bug 4871
Collapse All | Expand All

(-)unzpriv.h.orig (-10 / +1 lines)
Lines 2419-2434 Link Here
2419
 * All other ports are assumed to code zip entry filenames in ISO 8859-1.
2419
 * All other ports are assumed to code zip entry filenames in ISO 8859-1.
2420
 */
2420
 */
2421
#ifndef Ext_ASCII_TO_Native
2421
#ifndef Ext_ASCII_TO_Native
2422
#  define Ext_ASCII_TO_Native(string, hostnum, hostver, isuxatt, islochdr) \
2422
#  define Ext_ASCII_TO_Native(string, hostnum, hostver, isuxatt, islochdr)
2423
    if (((hostnum) == FS_FAT_ && \
2424
         !(((islochdr) || (isuxatt)) && \
2425
           ((hostver) == 25 || (hostver) == 26 || (hostver) == 40))) || \
2426
        (hostnum) == FS_HPFS_ || \
2427
        ((hostnum) == FS_NTFS_ && (hostver) == 50)) { \
2428
        _OEM_INTERN((string)); \
2429
    } else { \
2430
        _ISO_INTERN((string)); \
2431
    }
2432
#endif
2423
#endif
2433
2424
2434
2425

Return to bug 4871