]> granicus.if.org Git - postgresql/commitdiff
Fix over fix: JMP_BUF gone away and we have SIGJMP_BUF now.
authorVadim B. Mikheev <vadim4o@yahoo.com>
Sat, 14 Dec 1996 08:26:34 +0000 (08:26 +0000)
committerVadim B. Mikheev <vadim4o@yahoo.com>
Sat, 14 Dec 1996 08:26:34 +0000 (08:26 +0000)
Excuse me.

src/backend/utils/error/exc.c

index fce0bef88946f879e37e8a25b4fe357bc66e083a..aa3b8274eaa4600ffb4fbc4b41bb6197e97dbf41 100644 (file)
@@ -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);