aboutsummaryrefslogtreecommitdiff
path: root/src/include/c.h
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2000-07-12 17:38:53 +0000
committerPeter Eisentraut <peter_e@gmx.net>2000-07-12 17:38:53 +0000
commit648677c3a2cbfb3e70da33c7131f0c6390ff2579 (patch)
tree35220071962eadcd71273b277530635097160d3d /src/include/c.h
parentcbdaa27f9798bfeb3bd04afadb5dccdcda361de3 (diff)
downloadpostgresql-648677c3a2cbfb3e70da33c7131f0c6390ff2579.tar.gz
postgresql-648677c3a2cbfb3e70da33c7131f0c6390ff2579.zip
Add assert checking to GUC ("debug_assertions")
Rename settings net_server to tcpip_socket, max_backends to max_connections Add --help and --version to postmaster, reformat help output
Diffstat (limited to 'src/include/c.h')
-rw-r--r--src/include/c.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/c.h b/src/include/c.h
index 250a8c6db16..18bdda5e781 100644
--- a/src/include/c.h
+++ b/src/include/c.h
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: c.h,v 1.76 2000/07/07 21:12:47 tgl Exp $
+ * $Id: c.h,v 1.77 2000/07/12 17:38:53 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -706,7 +706,7 @@ typedef struct Exception
#define AssertState(condition) \
Trap(!(condition), BadState)
-extern int assert_enabled;
+extern bool assert_enabled;
#endif /* USE_ASSERT_CHECKING */