diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-12-20 17:13:41 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-12-20 17:13:41 +0000 |
commit | da59a70c094d6a39a19ca75ade38ef06a71b6c64 (patch) | |
tree | 1b7202b94529755cf9c3020916050f3626953428 /src/interfaces/libpq/fe-auth.c | |
parent | 59bffa370737fcd8cb04762417c2eb4eeeee774f (diff) | |
download | postgresql-da59a70c094d6a39a19ca75ade38ef06a71b6c64.tar.gz postgresql-da59a70c094d6a39a19ca75ade38ef06a71b6c64.zip |
Remove direct inclusions of <com_err.h> as well as configure test for
its presence. This amounts to desupporting Kerberos 5 releases 1.0.*,
which is small loss, and simplifies use of our Kerberos code on platforms
with Red-Hat-style include file layouts. Per gripe from John Gray and
followup discussion.
Diffstat (limited to 'src/interfaces/libpq/fe-auth.c')
-rw-r--r-- | src/interfaces/libpq/fe-auth.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/interfaces/libpq/fe-auth.c b/src/interfaces/libpq/fe-auth.c index fa586ce5b86..92832ed58f3 100644 --- a/src/interfaces/libpq/fe-auth.c +++ b/src/interfaces/libpq/fe-auth.c @@ -10,7 +10,7 @@ * exceed INITIAL_EXPBUFFER_SIZE (currently 256 bytes). * * IDENTIFICATION - * $PostgreSQL: pgsql/src/interfaces/libpq/fe-auth.c,v 1.95 2004/11/09 15:57:57 petere Exp $ + * $PostgreSQL: pgsql/src/interfaces/libpq/fe-auth.c,v 1.96 2004/12/20 17:13:41 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -243,7 +243,6 @@ pg_krb4_sendauth(char *PQerrormsg, int sock, */ #include <krb5.h> -#include <com_err.h> /* * pg_an_to_ln -- return the local name corresponding to an authentication |