From: Vadim B. Mikheev Date: Sat, 14 Dec 1996 08:26:08 +0000 (+0000) Subject: Fix over fix: JMP_BUF gone away and we have SIGJMP_BUF now. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7441e1facb1eba8eb4288a918699c6ca11806d4f;p=postgresql Fix over fix: JMP_BUF gone away and we have SIGJMP_BUF now. Excuse me. --- diff --git a/src/backend/utils/error/exc.c b/src/backend/utils/error/exc.c index 4721ad5cc4..61b67cb91d 100644 --- a/src/backend/utils/error/exc.c +++ b/src/backend/utils/error/exc.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/exc.c,v 1.6.2.1 1996/12/14 05:54:36 vadim Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/exc.c,v 1.6.2.2 1996/12/14 08:26:08 vadim Exp $ * * NOTE * XXX this code needs improvement--check for state violations and @@ -183,7 +183,7 @@ ExcRaise(Exception *excP, ExcCurFrameP = efp->link; -#if defined (JMP_BUF) +#if !defined (SIGJMP_BUF) longjmp(efp->context, 1); #else siglongjmp(efp->context, 1);