changed missed err() change to err_out() Release_2_0_0
authorMarc G. Fournier
Sat, 17 Aug 1996 06:41:10 +0000 (06:41 +0000)
committerMarc G. Fournier
Sat, 17 Aug 1996 06:41:10 +0000 (06:41 +0000)
Found/submittd by David Bennett

src/backend/bootstrap/bootstrap.c

index 2a1832349ab938e6aa1b19a2f0ac6fb0145050d7..c54544d902f78600c341a4ea901e80c660b3b391 100644 (file)
@@ -7,7 +7,7 @@
  * Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.5 1996/08/13 01:28:28 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.6 1996/08/17 06:41:10 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -743,7 +743,7 @@ gettype(char *type)
         return(gettype(type));
     }
     elog(WARN, "Error: unknown type '%s'.\n", type);
-    err();
+    err_out();
     /* not reached, here to make compiler happy */
     return 0;
 }