]> granicus.if.org Git - postgresql/commitdiff
Fix incorrect mapping of fopen mode 'a' in recently-added code to
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 24 Sep 2006 17:19:53 +0000 (17:19 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 24 Sep 2006 17:19:53 +0000 (17:19 +0000)
make fopen work safely on Windows.  Magnus

src/port/open.c

index 268f2d31a24fdccb87e57978204b62820752f2b6..dd1901bd3d8ae96b45aaf323474dc661e167b332 100644 (file)
@@ -6,7 +6,7 @@
  *
  * 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'))
                openmode |= O_WRONLY | O_CREAT | O_TRUNC;
        if (strchr(mode, 'a'))
-               openmode |= O_WRONLY | O_APPEND;
+               openmode |= O_WRONLY | O_CREAT | O_APPEND;
 
        if (strchr(mode, 'b'))
                openmode |= O_BINARY;