From 43499af4ab56a3d034b5e27f97273b612110410d Mon Sep 17 00:00:00 2001 From: Jan Wieck Date: Fri, 19 Nov 1999 18:51:52 +0000 Subject: New parallel regression test shell and related things. Jan --- src/backend/access/transam/xlog.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/backend/access/transam/xlog.c') diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 05eb5b0706f..002dc4c3758 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -5,7 +5,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Header: /cvsroot/pgsql/src/backend/access/transam/xlog.c,v 1.7 1999/10/25 03:07:42 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/transam/xlog.c,v 1.8 1999/11/19 18:51:47 wieck Exp $ * *------------------------------------------------------------------------- */ @@ -1253,15 +1253,15 @@ tryAgain: { fd = errno; if (!ReleaseDataFile()) - elog(STOP, "Open(cntlfile) failed: %d (and no one data file can be closed)", - fd); + elog(STOP, "Open(\"%s\") failed: %d (and no one data file can be closed)", + ControlFilePath, fd); goto tryAgain; } if (fd < 0) - elog(STOP, "Open(cntlfile) failed: %d", errno); + elog(STOP, "Open(\"%s\") failed: %d", ControlFilePath, errno); if (read(fd, ControlFile, BLCKSZ) != BLCKSZ) - elog(STOP, "Read(cntlfile) failed: %d", errno); + elog(STOP, "Read(\"%s\") failed: %d", ControlFilePath, errno); close(fd); -- cgit v1.2.3