mirror of
https://github.com/postgres/postgres.git
synced 2025-04-29 13:56:47 +03:00
Add storage/ipc.h include file to get read/write function declarations.
This commit is contained in:
parent
c47eaac952
commit
8e86c46be3
@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/libpq/pqcomm.c,v 1.26 1997/11/10 05:15:56 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/libpq/pqcomm.c,v 1.27 1997/11/17 16:17:14 thomas Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -58,6 +58,7 @@
|
||||
#include <libpq/pqsignal.h>
|
||||
#include <libpq/auth.h>
|
||||
#include <libpq/libpq.h> /* where the declarations go */
|
||||
#include <storage/ipc.h>
|
||||
|
||||
/* ----------------
|
||||
* declarations
|
||||
@ -595,7 +596,7 @@ StreamServerPort(char *hostName, short portName, int *fdP)
|
||||
size_t len;
|
||||
int one = 1;
|
||||
|
||||
family = hostName != NULL ? AF_INET : AF_UNIX;
|
||||
family = ((hostName != NULL) ? AF_INET : AF_UNIX);
|
||||
|
||||
if ((fd = socket(family, SOCK_STREAM, 0)) < 0)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user