diff options
author | Jan Wieck <JanWieck@Yahoo.com> | 1999-11-19 18:51:52 +0000 |
---|---|---|
committer | Jan Wieck <JanWieck@Yahoo.com> | 1999-11-19 18:51:52 +0000 |
commit | 43499af4ab56a3d034b5e27f97273b612110410d (patch) | |
tree | 270213fe173e0f69ccdb619408ea60df92e0b404 /src/backend/access/transam/xlog.c | |
parent | 58d1eeaafe9e534f7518f13b3560a66215eecf79 (diff) |
New parallel regression test shell and related things.
Jan
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r-- | src/backend/access/transam/xlog.c | 10 |
1 files changed, 5 insertions, 5 deletions
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); |