Fix over fix: JMP_BUF gone away and we have SIGJMP_BUF now.
authorVadim B. Mikheev <[email protected]>
Sat, 14 Dec 1996 08:26:08 +0000 (08:26 +0000)
committerVadim B. Mikheev <[email protected]>
Sat, 14 Dec 1996 08:26:08 +0000 (08:26 +0000)
Excuse me.

src/backend/utils/error/exc.c

index 4721ad5cc424272bafb30fa98744d9b0160517fc..61b67cb91d88c5680eb66fed9ce6bbb909fed5b5 100644 (file)
@@ -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);