aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2001-10-18 22:40:52 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2001-10-18 22:40:52 +0000
commit13e467f74fc34345aa850a3cf2d238906a5a6f3d (patch)
treeeb43f11b74982a5f70988764e5a3e1b9693daf25 /src
parent4fec55af6c7d688fa78afd1e1fec0f6d0f5b294f (diff)
downloadpostgresql-13e467f74fc34345aa850a3cf2d238906a5a6f3d.tar.gz
postgresql-13e467f74fc34345aa850a3cf2d238906a5a6f3d.zip
Add STATUS_EOF value needed for auth.c. Remove a bunch of unused
STATUS_xxx macros to reduce clutter.
Diffstat (limited to 'src')
-rw-r--r--src/include/c.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/include/c.h b/src/include/c.h
index 372e548f8af..c299d7761cb 100644
--- a/src/include/c.h
+++ b/src/include/c.h
@@ -12,7 +12,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: c.h,v 1.102 2001/10/03 21:58:28 tgl Exp $
+ * $Id: c.h,v 1.103 2001/10/18 22:40:52 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -573,12 +573,7 @@ typedef NameData *Name;
#define STATUS_OK (0)
#define STATUS_ERROR (-1)
-#define STATUS_NOT_FOUND (-2)
-#define STATUS_INVALID (-3)
-#define STATUS_UNCATALOGUED (-4)
-#define STATUS_REPLACED (-5)
-#define STATUS_NOT_DONE (-6)
-#define STATUS_BAD_PACKET (-7)
+#define STATUS_EOF (-2)
#define STATUS_FOUND (1)