Commit 93b408ef authored by Bruce Momjian's avatar Bruce Momjian

Reorder crypt.h include for SunOS compile problem.

Fred Houweling
parent aac44843
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.225 2003/03/10 22:28:21 tgl Exp $ * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.226 2003/03/17 17:58:57 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -22,6 +22,13 @@ ...@@ -22,6 +22,13 @@
#include <ctype.h> #include <ctype.h>
#include <time.h> #include <time.h>
#ifndef HAVE_STRDUP
#include "strdup.h"
#endif
#ifdef HAVE_CRYPT_H
#include <crypt.h>
#endif
#include "libpq-fe.h" #include "libpq-fe.h"
#include "libpq-int.h" #include "libpq-int.h"
#include "fe-auth.h" #include "fe-auth.h"
...@@ -40,15 +47,6 @@ ...@@ -40,15 +47,6 @@
#endif #endif
#include "libpq/ip.h" #include "libpq/ip.h"
#ifndef HAVE_STRDUP
#include "strdup.h"
#endif
#ifdef HAVE_CRYPT_H
#include <crypt.h>
#endif
#include "mb/pg_wchar.h" #include "mb/pg_wchar.h"
......
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