From: Tom Lane Date: Thu, 21 Jun 2001 19:45:45 +0000 (+0000) Subject: Tweak error message. X-Git-Tag: REL7_2_BETA1~989 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=695e5754705dd8977551abf3d3873620e65f9ac9;p=thirdparty%2Fpostgresql.git Tweak error message. --- diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 95e414c03c9..94ba140b3ad 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, 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.69 2001/06/06 17:07:38 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/transam/xlog.c,v 1.70 2001/06/21 19:45:45 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -1342,7 +1342,7 @@ XLogFileInit(uint32 log, uint32 seg, /* if write didn't set errno, assume problem is no disk space */ errno = save_errno ? save_errno : ENOSPC; - elog(STOP, "ZeroFill failed to create or write %s: %m", tmppath); + elog(STOP, "ZeroFill failed to write %s: %m", tmppath); } }