OSDN Git Service

Add missing include for SCM_CREDS.
authorBruce Momjian <bruce@momjian.us>
Tue, 21 Aug 2001 15:21:25 +0000 (15:21 +0000)
committerBruce Momjian <bruce@momjian.us>
Tue, 21 Aug 2001 15:21:25 +0000 (15:21 +0000)
src/backend/libpq/auth.c
src/backend/libpq/hba.c
src/interfaces/libpq/fe-auth.c

index 682eede..adcb881 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/libpq/auth.c,v 1.63 2001/08/21 00:33:27 momjian Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/libpq/auth.c,v 1.64 2001/08/21 15:21:25 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -16,6 +16,7 @@
 #include "postgres.h"
 
 #include <sys/types.h>
+#include <sys/param.h>
 #include <sys/socket.h>                        /* for SCM_CREDS */
 #ifdef SCM_CREDS
 #include <sys/uio.h>                   /* for struct iovec */
index 85be8f0..a07501e 100644 (file)
@@ -10,7 +10,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/libpq/hba.c,v 1.66 2001/08/21 14:48:19 momjian Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/libpq/hba.c,v 1.67 2001/08/21 15:21:25 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -20,6 +20,7 @@
 #include <pwd.h>
 #include <fcntl.h>
 #include <sys/types.h>
+#include <sys/param.h>
 #include <sys/socket.h>                        /* for SCM_CREDS */
 #ifdef SCM_CREDS
 #include <sys/uio.h>                   /* for struct iovec */
index 72c37bd..2c5ebf0 100644 (file)
@@ -10,7 +10,7 @@
  * exceed INITIAL_EXPBUFFER_SIZE (currently 256 bytes).
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-auth.c,v 1.56 2001/08/21 00:33:27 momjian Exp $
+ *       $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-auth.c,v 1.57 2001/08/21 15:21:25 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
 #include <fcntl.h>
 #include <errno.h>
 #include <sys/types.h>
+#include <sys/param.h>                 /* for MAXHOSTNAMELEN on most */
 #include <sys/socket.h>                        /* for SCM_CREDS */
 #ifdef SCM_CREDS
 #include <sys/uio.h>                   /* for struct iovec */
 #include <sys/ucred.h>
 #endif
-#include <sys/param.h>                 /* for MAXHOSTNAMELEN on most */
 #ifndef  MAXHOSTNAMELEN
 #include <netdb.h>                             /* for MAXHOSTNAMELEN on some */
 #endif
@@ -447,7 +447,7 @@ pg_local_sendauth(char *PQerrormsg, PGconn *conn)
        /* Prevent padding */
        char cmsgmem[sizeof(struct cmsghdr) + sizeof(struct cmsgcred)];
        /* Point to start of first structure */
-    struct cmsghdr *cmsg = (struct cmsghdr *)cmsgmem;
+       struct cmsghdr *cmsg = (struct cmsghdr *)cmsgmem;
 #endif
 
        /*