Commit 13e467f7 authored by Tom Lane's avatar Tom Lane

Add STATUS_EOF value needed for auth.c. Remove a bunch of unused

STATUS_xxx macros to reduce clutter.
parent 4fec55af
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * 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; ...@@ -573,12 +573,7 @@ typedef NameData *Name;
#define STATUS_OK (0) #define STATUS_OK (0)
#define STATUS_ERROR (-1) #define STATUS_ERROR (-1)
#define STATUS_NOT_FOUND (-2) #define STATUS_EOF (-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_FOUND (1) #define STATUS_FOUND (1)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment