From d84b6ef56be10d0c24859d38fcc4fa99cb1f43e2 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Fri, 26 Sep 2003 15:27:37 +0000 Subject: Various message fixes, among those fixes for the previous round of fixes --- src/backend/access/transam/xlog.c | 6 +++--- 1 file changed, 3 insertions(+), 3 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 32e7672945e..282ea7058dc 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2003, 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.123 2003/09/25 06:57:57 petere Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/transam/xlog.c,v 1.124 2003/09/26 15:27:19 petere Exp $ * *------------------------------------------------------------------------- */ @@ -1962,7 +1962,7 @@ got_record:; { ereport(emode, (errcode_for_file_access(), - errmsg("could not read log file %u, segment %u, offset %u: %m", + errmsg("could not from read log file %u, segment %u, offset %u: %m", readId, readSeg, readOff))); goto next_record_is_invalid; } @@ -2197,7 +2197,7 @@ WriteControlFile(void) if (pg_fsync(fd) != 0) ereport(PANIC, (errcode_for_file_access(), - errmsg("could not fsync of control file: %m"))); + errmsg("could not fsync control file: %m"))); close(fd); } -- cgit v1.2.3