From 1add01bb5bbb32977c2bd0a30633d2f36c303e9c Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Tue, 20 Aug 1996 15:25:29 +0000 Subject: [PATCH] No wonder the Linux version kept screwing up...err() was fixed in the wrong file... Pointed out by: Philip Plane --- src/backend/bootstrap/bootparse.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/bootstrap/bootparse.y b/src/backend/bootstrap/bootparse.y index 0362b302b1..c0483f278a 100644 --- a/src/backend/bootstrap/bootparse.y +++ b/src/backend/bootstrap/bootparse.y @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootparse.y,v 1.1.1.1 1996/07/09 06:21:14 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootparse.y,v 1.1.1.1.2.1 1996/08/20 15:25:29 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -175,7 +175,7 @@ InsertStmt: elog(WARN,"incorrect number of values for tuple"); if (reldesc == (Relation)NULL) { elog(WARN,"must OPEN RELATION before INSERT\n"); - err(); + err_out(); } if (DebugMode) puts("Insert Begin");