aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVadim B. Mikheev <vadim4o@yahoo.com>1996-12-14 08:26:34 +0000
committerVadim B. Mikheev <vadim4o@yahoo.com>1996-12-14 08:26:34 +0000
commit290d3b51985c4dedf11e37e62db5a26fd811122a (patch)
tree4345f097eb4673adb94b9018ffdeea46218067ff /src
parentcbb131570e1e6cc60cb629fc049740198dbc1aa7 (diff)
downloadpostgresql-290d3b51985c4dedf11e37e62db5a26fd811122a.tar.gz
postgresql-290d3b51985c4dedf11e37e62db5a26fd811122a.zip
Fix over fix: JMP_BUF gone away and we have SIGJMP_BUF now.
Excuse me.
Diffstat (limited to 'src')
-rw-r--r--src/backend/utils/error/exc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/error/exc.c b/src/backend/utils/error/exc.c
index fce0bef8894..aa3b8274eaa 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.7 1996/12/14 05:55:27 vadim Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/exc.c,v 1.8 1996/12/14 08:26:34 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);