Skip to content

Commit d371340

Browse files
committed
xlog.c: If possible please add the following patch to better support NetWare.
Ulrich Neumann
1 parent f71c924 commit d371340

File tree

1 file changed

+2
-2
lines changed
  • src/backend/access/transam

1 file changed

+2
-2
lines changed

src/backend/access/transam/xlog.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
10-
* $Header: /cvsroot/pgsql/src/backend/access/transam/xlog.c,v 1.92 2002/04/21 19:08:02 thomas Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/transam/xlog.c,v 1.93 2002/04/24 01:54:43 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -1504,7 +1504,7 @@ InstallXLogFileSegment(uint32 log, uint32 seg, char *tmppath,
15041504
* overwrite an existing logfile. However, there shouldn't be one, so
15051505
* rename() is an acceptable substitute except for the truly paranoid.
15061506
*/
1507-
#ifndef __BEOS__
1507+
#if !defined(__BEOS__) && !defined(N_PLAT_NLM)
15081508
if (link(tmppath, path) < 0)
15091509
elog(PANIC, "link from %s to %s (initialization of log file %u, segment %u) failed: %m",
15101510
tmppath, path, log, seg);

0 commit comments

Comments
 (0)