diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-06-20 19:56:52 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-06-20 19:56:52 +0000 |
commit | 47a37aeebdbeb5c242141830586e065256a0aaf6 (patch) | |
tree | 0f9eb0937b4864b811ac221e9dde28f8946b290a /src/interfaces/libpq/fe-auth.c | |
parent | eaf8f312c754d6b4bcc9d0ff07c14b3b8990ed91 (diff) | |
download | postgresql-47a37aeebdbeb5c242141830586e065256a0aaf6.tar.gz postgresql-47a37aeebdbeb5c242141830586e065256a0aaf6.zip |
Split definitions for md5.c out of crypt.h and into their own header
libpq/md5.h, so that there's a clear separation between backend-only
definitions and shared frontend/backend definitions. (Turns out this
is reversing a bad decision from some years ago...) Fix up references
to crypt.h as needed. I looked into moving the code into src/port, but
the headers in src/include/libpq are sufficiently intertwined that it
seems more work than it's worth to do that.
Diffstat (limited to 'src/interfaces/libpq/fe-auth.c')
-rw-r--r-- | src/interfaces/libpq/fe-auth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq/fe-auth.c b/src/interfaces/libpq/fe-auth.c index bfcb3b7e78d..501cc39d0ee 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.114 2006/03/06 17:59:30 momjian Exp $ + * $PostgreSQL: pgsql/src/interfaces/libpq/fe-auth.c,v 1.115 2006/06/20 19:56:52 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -50,7 +50,7 @@ #include "libpq-fe.h" #include "libpq-int.h" #include "fe-auth.h" -#include "libpq/crypt.h" +#include "libpq/md5.h" #ifdef KRB5 |