diff options
author | Bryan Henderson | 1996-10-30 00:36:59 +0000 |
---|---|---|
committer | Bryan Henderson | 1996-10-30 00:36:59 +0000 |
commit | 1dfe4eaeb1c5e3f823e71e32c88ec4794fee1dde (patch) | |
tree | 5878a930ba24726d489702c752d6ab895c8afe19 | |
parent | aa71f918c3c0354718d5a12b88c34472f7e538cd (diff) |
Fix small syntax error.
-rw-r--r-- | src/backend/postmaster/postmaster.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 23e9b4c696c..1daf3c1b00f 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -10,7 +10,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.18 1996/10/29 21:51:13 bryanh Exp $ + * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.19 1996/10/30 00:36:59 bryanh Exp $ * * NOTES * @@ -667,7 +667,6 @@ send_error_reply(Port *port, const char *errormsg) /* The literal reply string we put into the socket. This is a pointer to storage we malloc. */ - char reply[201]; const struct linger linger_parm = {true, LINGER_TIME}; /* A parameter for setsockopt() that tells it to have close() block for a while waiting for the frontend to read its outstanding messages. |