diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2010-07-18 14:51:45 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2010-09-05 13:55:08 +0200 |
commit | 817328eea788c746131cf151b64fd250200da333 (patch) | |
tree | e63042448ea1d87c5688743d437e97bd44e5ea70 /libio/iofdopen.c | |
parent | 29fddf61b28e57265b5c5f7be2b42bb73906ae53 (diff) | |
download | glibc-817328eea788c746131cf151b64fd250200da333.tar.gz glibc-817328eea788c746131cf151b64fd250200da333.tar.xz glibc-817328eea788c746131cf151b64fd250200da333.zip |
Remove undefined operations
Diffstat (limited to 'libio/iofdopen.c')
-rw-r--r-- | libio/iofdopen.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libio/iofdopen.c b/libio/iofdopen.c index 0c449ed75b..7f6e593e80 100644 --- a/libio/iofdopen.c +++ b/libio/iofdopen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993,1994,1997,1998,1999,2000,2002,2003 +/* Copyright (C) 1993,1994,1997,1998,1999,2000,2002,2003,2010 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -172,9 +172,8 @@ _IO_new_fdopen (fd, mode) } new_f->fp.file._flags &= ~_IO_DELETE_DONT_CLOSE; - new_f->fp.file._IO_file_flags = - _IO_mask_flags (&new_f->fp.file, read_write, - _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING); + _IO_mask_flags (&new_f->fp.file, read_write, + _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING); return &new_f->fp.file; } |