diff options
Diffstat (limited to 'src/include/libpq')
-rw-r--r-- | src/include/libpq/hba.h | 4 | ||||
-rw-r--r-- | src/include/libpq/libpq-be.h | 8 | ||||
-rw-r--r-- | src/include/libpq/libpq.h | 4 | ||||
-rw-r--r-- | src/include/libpq/pqsignal.h | 18 |
4 files changed, 18 insertions, 16 deletions
diff --git a/src/include/libpq/hba.h b/src/include/libpq/hba.h index 5dcf49100d5..1a5021ad268 100644 --- a/src/include/libpq/hba.h +++ b/src/include/libpq/hba.h @@ -4,7 +4,7 @@ * Interface to hba.c * * - * $Id: hba.h,v 1.16 1999/10/23 03:13:29 tgl Exp $ + * $Id: hba.h,v 1.17 2000/04/12 17:16:35 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -42,7 +42,7 @@ typedef enum UserAuth typedef struct Port hbaPort; -int hba_getauthmethod(hbaPort *port); +int hba_getauthmethod(hbaPort *port); int authident(struct sockaddr_in * raddr, struct sockaddr_in * laddr, const char *postgres_username, const char *auth_arg); diff --git a/src/include/libpq/libpq-be.h b/src/include/libpq/libpq-be.h index 56e0e996d02..76403d495e0 100644 --- a/src/include/libpq/libpq-be.h +++ b/src/include/libpq/libpq-be.h @@ -8,7 +8,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: libpq-be.h,v 1.18 2000/01/26 05:58:12 momjian Exp $ + * $Id: libpq-be.h,v 1.19 2000/04/12 17:16:36 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -133,11 +133,11 @@ typedef struct Port char auth_arg[MAX_AUTH_ARG]; UserAuth auth_method; - /* - * SSL structures + /* + * SSL structures */ #ifdef USE_SSL - SSL *ssl; + SSL *ssl; #endif } Port; diff --git a/src/include/libpq/libpq.h b/src/include/libpq/libpq.h index d60d4a0a117..bb935d42514 100644 --- a/src/include/libpq/libpq.h +++ b/src/include/libpq/libpq.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: libpq.h,v 1.35 2000/01/26 05:58:12 momjian Exp $ + * $Id: libpq.h,v 1.36 2000/04/12 17:16:36 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -139,7 +139,7 @@ extern Exception MemoryError, * PQerrormsg[] is used only for error messages generated within backend * libpq, none of which are remarkably long. Note that this length should * NOT be taken as any indication of the maximum error message length that - * the backend can create! elog() can in fact produce extremely long messages. + * the backend can create! elog() can in fact produce extremely long messages. */ #define PQERRORMSG_LENGTH 1024 diff --git a/src/include/libpq/pqsignal.h b/src/include/libpq/pqsignal.h index 7b7350442c0..8013848ef65 100644 --- a/src/include/libpq/pqsignal.h +++ b/src/include/libpq/pqsignal.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pqsignal.h,v 1.11 2000/01/26 05:58:12 momjian Exp $ + * $Id: pqsignal.h,v 1.12 2000/04/12 17:16:36 momjian Exp $ * * NOTES * This shouldn't be in libpq, but the monitor and some other @@ -19,16 +19,18 @@ #define PQSIGNAL_H #ifdef HAVE_SIGPROCMASK -extern sigset_t UnBlockSig, - BlockSig; -#define PG_INITMASK() ( \ +extern sigset_t UnBlockSig, + BlockSig; + +#define PG_INITMASK() ( \ sigemptyset(&UnBlockSig), \ sigfillset(&BlockSig) \ ) -#define PG_SETMASK(mask) sigprocmask(SIG_SETMASK, mask, NULL) +#define PG_SETMASK(mask) sigprocmask(SIG_SETMASK, mask, NULL) #else -extern int UnBlockSig, - BlockSig; +extern int UnBlockSig, + BlockSig; + #define PG_INITMASK() ( \ UnBlockSig = 0, \ BlockSig = sigmask(SIGHUP) | sigmask(SIGQUIT) | \ @@ -37,7 +39,7 @@ extern int UnBlockSig, sigmask(SIGUSR2) | sigmask(SIGCHLD) | \ sigmask(SIGWINCH) | sigmask(SIGFPE) \ ) -#define PG_SETMASK(mask) sigsetmask(*((int*)(mask))) +#define PG_SETMASK(mask) sigsetmask(*((int*)(mask))) #endif typedef void (*pqsigfunc) (int); |