Lines 980-986
char **argv; /* command line
Link Here
|
980 |
dispose = 0; /* 1=remove files after put in zip file */ |
980 |
dispose = 0; /* 1=remove files after put in zip file */ |
981 |
pathput = 1; /* 1=store path with name */ |
981 |
pathput = 1; /* 1=store path with name */ |
982 |
method = BEST; /* one of BEST, DEFLATE (only), or STORE (only) */ |
982 |
method = BEST; /* one of BEST, DEFLATE (only), or STORE (only) */ |
983 |
dosify = 0; /* 1=make new entries look like MSDOS */ |
983 |
dosify = 1; /* 1=make new entries look like MSDOS */ |
984 |
verbose = 0; /* 1=report oddities in zip file structure */ |
984 |
verbose = 0; /* 1=report oddities in zip file structure */ |
985 |
fix = 0; /* 1=fix the zip file */ |
985 |
fix = 0; /* 1=fix the zip file */ |
986 |
adjust = 0; /* 1=adjust offsets for sfx'd file (keep preamble) */ |
986 |
adjust = 0; /* 1=adjust offsets for sfx'd file (keep preamble) */ |
Lines 1264-1269
char **argv; /* command line
Link Here
|
1264 |
junk_sfx = 1; break; |
1264 |
junk_sfx = 1; break; |
1265 |
case 'k': /* Make entries using DOS names (k for Katz) */ |
1265 |
case 'k': /* Make entries using DOS names (k for Katz) */ |
1266 |
dosify = 1; break; |
1266 |
dosify = 1; break; |
|
|
1267 |
case 'K': /* Make entries using DOS names (K for Kompat) */ |
1268 |
dosify = 0; break; |
1267 |
case 'l': /* Translate end-of-line */ |
1269 |
case 'l': /* Translate end-of-line */ |
1268 |
translate_eol++; break; |
1270 |
translate_eol++; break; |
1269 |
#ifndef WINDLL |
1271 |
#ifndef WINDLL |