diff options
Diffstat (limited to 'libio')
-rw-r--r-- | libio/iofopen.c | 4 | ||||
-rw-r--r-- | libio/iofopen64.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libio/iofopen.c b/libio/iofopen.c index e8f39ae9ac..92d58bb133 100644 --- a/libio/iofopen.c +++ b/libio/iofopen.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993, 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1993, 1997, 1998, 1999 Free Software Foundation, Inc. This file is part of the GNU IO Library. This library is free software; you can redistribute it and/or @@ -52,7 +52,7 @@ _IO_new_fopen (filename, mode) #if !_IO_UNIFIED_JUMPTABLES new_f->fp.vtable = NULL; #endif - if (_IO_file_fopen (&new_f->fp.file, filename, mode, 0) != NULL) + if (_IO_file_fopen (&new_f->fp.file, filename, mode, 1) != NULL) return (_IO_FILE *) &new_f->fp; _IO_un_link (&new_f->fp.file); free (new_f); diff --git a/libio/iofopen64.c b/libio/iofopen64.c index f5e799466d..b071a0e160 100644 --- a/libio/iofopen64.c +++ b/libio/iofopen64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1993, 1997, 1999 Free Software Foundation, Inc. This file is part of the GNU IO Library. This library is free software; you can redistribute it and/or @@ -53,7 +53,7 @@ _IO_fopen64 (filename, mode) #if !_IO_UNIFIED_JUMPTABLES new_f->fp.vtable = NULL; #endif - if (_IO_file_fopen (&new_f->fp.file, filename, mode, 1) != NULL) + if (_IO_file_fopen (&new_f->fp.file, filename, mode, 0) != NULL) return &new_f->fp.file; _IO_un_link (&new_f->fp.file); free (new_f); |