Fix incorrect mapping of fopen mode 'a' in recently-added code to

make fopen work safely on Windows.  Magnus
This commit is contained in:
Tom Lane 2006-09-24 17:19:53 +00:00
parent f375d5d6f9
commit 1d0969041e
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
* *
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
* *
* $PostgreSQL: pgsql/src/port/open.c,v 1.14 2006/08/30 18:06:27 tgl Exp $ * $PostgreSQL: pgsql/src/port/open.c,v 1.15 2006/09/24 17:19:53 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -126,7 +126,7 @@ pgwin32_fopen(const char *fileName, const char *mode)
else if (strchr(mode, 'w')) else if (strchr(mode, 'w'))
openmode |= O_WRONLY | O_CREAT | O_TRUNC; openmode |= O_WRONLY | O_CREAT | O_TRUNC;
if (strchr(mode, 'a')) if (strchr(mode, 'a'))
openmode |= O_WRONLY | O_APPEND; openmode |= O_WRONLY | O_CREAT | O_APPEND;
if (strchr(mode, 'b')) if (strchr(mode, 'b'))
openmode |= O_BINARY; openmode |= O_BINARY;