diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-04-18 01:03:42 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-04-18 01:03:42 +0000 |
commit | 4d4953fc4187567f73e7e5ccd6678d19a156c240 (patch) | |
tree | 37b702cafe9076bd1e6fccc058fb908b5b0e32f1 /src/backend/access/transam/xlog.c | |
parent | cb7fb3ca958ec8bd5a14e740c067f1d096af3454 (diff) | |
download | postgresql-4d4953fc4187567f73e7e5ccd6678d19a156c240.tar.gz postgresql-4d4953fc4187567f73e7e5ccd6678d19a156c240.zip |
Make Win32 tests to match existing Cygwin tests, where appropriate.
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r-- | src/backend/access/transam/xlog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 3b615f8229b..4030a11a52e 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Header: /cvsroot/pgsql/src/backend/access/transam/xlog.c,v 1.112 2003/02/21 00:06:22 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/transam/xlog.c,v 1.113 2003/04/18 01:03:41 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -1507,7 +1507,7 @@ InstallXLogFileSegment(uint32 log, uint32 seg, char *tmppath, * overwrite an existing logfile. However, there shouldn't be one, so * rename() is an acceptable substitute except for the truly paranoid. */ -#if !defined(__BEOS__) && !defined(N_PLAT_NLM) && !defined(__CYGWIN__) +#if HAVE_WORKING_LINK if (link(tmppath, path) < 0) elog(PANIC, "link from %s to %s (initialization of log file %u, segment %u) failed: %m", tmppath, path, log, seg); |