diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-09-21 20:31:49 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-09-21 20:31:49 +0000 |
commit | c1c888a9de0c062182552e66ca766b252ca140bc (patch) | |
tree | 627829c42bcbcc8e84e563fe685158fcb4404a04 /src/interfaces/libpq/fe-auth.c | |
parent | 4e77b4a5487c074e3e9882feef816f87e3a03a18 (diff) | |
download | postgresql-c1c888a9de0c062182552e66ca766b252ca140bc.tar.gz postgresql-c1c888a9de0c062182552e66ca766b252ca140bc.zip |
Code review for MD5 authorization patch. Clean up some breakage
(salts were always zero!?), add much missing documentation.
Diffstat (limited to 'src/interfaces/libpq/fe-auth.c')
-rw-r--r-- | src/interfaces/libpq/fe-auth.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/interfaces/libpq/fe-auth.c b/src/interfaces/libpq/fe-auth.c index e496f7c3ee5..bb60bb1ceb9 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 - * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-auth.c,v 1.59 2001/09/07 19:52:54 momjian Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-auth.c,v 1.60 2001/09/21 20:31:49 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -30,12 +30,6 @@ #include "postgres_fe.h" -/* XXX is there a reason these appear before the system defines? */ -#include "libpq-fe.h" -#include "libpq-int.h" -#include "fe-auth.h" -#include "libpq/crypt.h" - #ifdef WIN32 #include "win32.h" #else @@ -59,6 +53,11 @@ #include <crypt.h> #endif +#include "libpq-fe.h" +#include "libpq-int.h" +#include "fe-auth.h" +#include "libpq/crypt.h" + /* * common definitions for generic fe/be routines |