diff --git a/zip/zip.c b/zip/zip.c index 439821f..7cf47f7 100644 --- a/zip/zip.c +++ b/zip/zip.c @@ -2289,7 +2289,7 @@ char **argv; /* command line tokens */ 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) */ @@ -2859,6 +2859,8 @@ char **argv; /* command line tokens */ 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 = 1; break; case o_ll: