Changeset 755ae5b


Ignore:
Timestamp:
2006-03-31T07:39:08Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
d783e48
Parents:
192b80a
Message:

Cut-and-paste considered harmful.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • bitlbee.c

    r192b80a r755ae5b  
    111111                   BitlBee process. So let's only close TTY-fds. */
    112112                if( isatty( 0 ) ) close( 0 );
    113                 if( isatty( 0 ) ) close( 1 );
    114                 if( isatty( 0 ) ) close( 2 );
     113                if( isatty( 1 ) ) close( 1 );
     114                if( isatty( 2 ) ) close( 2 );
    115115        }
    116116#endif
Note: See TracChangeset for help on using the changeset viewer.