Changeset 3362 for trunk


Ignore:
Timestamp:
May 7, 2007, 6:35:28 AM (18 years ago)
Author:
bird
Message:

drop the isatty check, it break gzip - >/dev/null stuff used in the tar testsuite.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/essentials/app-arch/gzip/gzip.c

    r3325 r3362  
    589589local void treat_stdin()
    590590{
     591#ifndef __KLIBC__ /* isatty is a bit busted on OS/2 and will currently
     592                   * mistake /dev/null for TTYs. */
    591593    if (!force && !list &&
    592594        isatty(fileno((FILE *)(decompress ? stdin : stdout)))) {
     
    610612        do_exit(ERROR);
    611613    }
     614#endif /* !__KLIBC__ */
    612615
    613616    if (decompress || !ascii) {
Note: See TracChangeset for help on using the changeset viewer.