home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / unzip511.zip / BUGS next >
Text File  |  1994-08-02  |  5KB  |  84 lines

  1. Bogus bugs (not our fault!):
  2. ---------------------------
  3.  
  4.  By far THE BIGGEST source of bug reports to Info-ZIP/zip-bugs is the
  5.  incorrect transfer of zipfiles (or of the UnZip executable itself).
  6.  ALWAYS TRANSFER IN BINARY MODE!  This includes ftp transfers and *both*
  7.  ends of a Kermit connection ("set file type binary").  If your copy
  8.  isn't exactly the same size as the original, you made a mistake.
  9.  
  10.  Another common source of errors such as "compression method 8 not sup-
  11.  ported" is the existence of an old version of UnZip somewhere in your
  12.  path.  Make sure you're using the version you think you're using; give
  13.  the full path explicitly if necessary.  Executing "unzip" without any
  14.  options will print a help screen, at the top of which is the UnZip
  15.  version number and release date; and executing "unzip -v" without any
  16.  zipfile or other options will give information about what compiler was
  17.  used, the target operating system, any special UnZip options, and the 
  18.  date of compilation--only for version 5.11 and later, though!  (Also,
  19.  under Unix C shell and some Bourne shells, "which unzip" will print 
  20.  the path of the unzip you're actually using.  Under OS/2 and MS-DOS,
  21.  whch21gr.zip [on SimTel mirror sites] will do the same thing; in addi-
  22.  tion, "which -a unzip" will show *all* copies of unzip in your path.)
  23.  
  24.  
  25. Bugs (real and/or imagined):
  26. ---------------------------
  27.  
  28.  - MKS Korn shell:  unzip assumes the MKS-style command-line environment
  29.     options are relevant to it, but this is not the case if unzip was called
  30.     by another program (e.g., from a .BAT file).  A fix for this exists for
  31.     Borland compilers but not for MSC, Watcom, djgpp, etc.
  32.  - OS/2:  for paths with one long component, the .LONGNAME EA may be saved for
  33.     all components (waste of disk space):  how to check??
  34.  - VMS:  for extracting to other directories, only the VMS-style "-d [.foo]"
  35.     format is accepted; "-d foo" should also be allowed.  Long filenames are
  36.     not automatically truncated to 39.39.  Even with -o specified, the user
  37.     is queried before overwriting; without -o, there are two levels of query.
  38.  - Novell Netware:  Netware drives may clear the archive bit on extracted
  39.     files under OS/2 and/or MS-DOS.  UnZip always *tries* to set the archive
  40.     bit, however.  [pynq@uchicago, 940527]
  41.  - DEC Ultrix:  on long zipfiles, unzip will sometimes fail (bad CRC, not always
  42.     reproducible); this is apparently due either to a hardware bug (cache mem)
  43.     or OS bug (page faults?) [Igor, Jean-loup, bottom of BUGS.long]
  44.  - Pyramid:  USE_FWRITE causes CRC errors (???) [Kevin]
  45.  - funzip/more/decryption/no-echo bug:  race condition(?) causes terminal to
  46.     be "reset" to no-echo state
  47.  - directory dates/times (special Unix perms?) not restored
  48.  - Macintosh (100200), Atari (020000) external file attributes not interpreted
  49.     correctly (both unzip and zipinfo)
  50.  - pkbug error:  zipfile with incorrect csize and/or ucsize--check for end of
  51.     compressed (csize) data in uncompression routines:
  52.       unreduce.c:    while (((outpos + outcnt) < ucsize) && (!zipeof)) {
  53.     [James Birdsall, Mark, bottom of BUGS.long]
  54.  - OS/2:  directory EAs not restored if directory exists [Kai Uwe, KG27515@uark]
  55.     (subsequent note:  no way to determine which EAs are newer ==> cannot 
  56.     restore without user input)
  57.  - MS-DOS:  Borland executables don't allow other than 80-column, 25/43/50-line
  58.     screen modes (Borland bug) [Michael Stillwell]
  59.  
  60.  
  61. Features (possible and/or definite):
  62. -----------------------------------
  63.  
  64.  - put man pages in more "proper" nroff format
  65.  - ignore case for internal filename match on non-Unix systems, unless file-
  66.     specs enclosed in single quotes
  67.  - save/extract Unix mtime/ctime/atime/UID/GID info (Unix extra field)
  68.  - modify to decompress input stream if part of a pipe, but continue using
  69.     central directory if not (BIG job!)--extended local header capability
  70.  - add zipinfo option(s) to sort alphabetically, by date/time, in reverse, etc.
  71.  - add "near" to global vars [Steve Salisbury, 92.4.21]
  72.  - modify set_file_time routines to share common code (macro?)
  73.  - when listing filenames, use '?' for non-printables? [Thomas Wolff, 92.6.1]
  74.  - add zipinfo "in-depth" option? (check local vs. central filenames, etc.)
  75.  - create zipcat program to concatenate zipfiles
  76.  - assembly-language routines?
  77.  - VM/CMS version (Walter Moore, Phil Howard, Chua Kong Sian, others)
  78.  - add -oo option (overwrite and override)?  no user queries (if bad password,
  79.     skip file; if disk full, take default action; if VMS special on non-VMS,
  80.     unpack anyway; etc.)
  81.  - add -Q[Q[Q]] option (quiet mode on comments, cautions, warnings and errors)?
  82.     forget -oo, or make synonym?  Default level -Q?
  83.  - add OS/2 .INF format helpfiles for UnZip and ZipInfo?
  84.