Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit bef3c89

Browse files
author
Bryan Henderson
committed
Fix prototypes so postmaster.c will compile.
1 parent 3698488 commit bef3c89

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/backend/postmaster/postmaster.c

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
*
1212
* IDENTIFICATION
13-
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.12 1996/10/12 07:48:49 bryanh Exp $
13+
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.13 1996/10/13 04:01:05 bryanh Exp $
1414
*
1515
* NOTES
1616
*
@@ -152,7 +152,8 @@ static int MultiplexedBackendPort;
152152
* postmaster.c - function prototypes
153153
*/
154154
static void pmdaemonize(void);
155-
static int ConnStartup(Port *port);
155+
static void ConnStartup(Port *port, int *status,
156+
char *errormsg, const int errormsg_len);
156157
static int ConnCreate(int serverFd, int *newFdP);
157158
static void reset_shared(short port);
158159
static void pmdie(SIGNAL_ARGS);
@@ -163,9 +164,9 @@ static int DoExec(StartupInfo *packet, int portFd);
163164
static void ExitPostmaster(int status);
164165
static void usage(const char *);
165166
static void checkDataDir(void);
166-
167167
int ServerLoop(void);
168168
int BackendStartup(StartupInfo *packet, Port *port, int *pidPtr);
169+
static void send_error_reply(Port *port, const char *errormsg);
169170

170171
extern char *optarg;
171172
extern int optind, opterr;

0 commit comments

Comments
 (0)