Make created zip archives compatible with WinRar/FAR --- zip-2.32/zip.c.orig 2008-06-24 21:26:39 +0400 +++ zip-2.32/zip.c 2008-06-24 22:24:55 +0400 @@ -980,7 +980,7 @@ char **argv; /* command line dispose = 0; /* 1=remove files after put in zip file */ pathput = 1; /* 1=store path with name */ method = BEST; /* one of BEST, DEFLATE (only), or STORE (only) */ - dosify = 0; /* 1=make new entries look like MSDOS */ + dosify = 1; /* 1=make new entries look like MSDOS */ verbose = 0; /* 1=report oddities in zip file structure */ fix = 0; /* 1=fix the zip file */ adjust = 0; /* 1=adjust offsets for sfx'd file (keep preamble) */ @@ -1264,6 +1264,8 @@ char **argv; /* command line junk_sfx = 1; break; case 'k': /* Make entries using DOS names (k for Katz) */ dosify = 1; break; + case 'K': /* Make entries using DOS names (K for Kompat) */ + dosify = 0; break; case 'l': /* Translate end-of-line */ translate_eol++; break; #ifndef WINDLL