aboutsummaryrefslogtreecommitdiff
path: root/src/backend/postmaster
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/postmaster')
-rw-r--r--src/backend/postmaster/postmaster.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c
index ff2ba13ef0b..8ea5c187588 100644
--- a/src/backend/postmaster/postmaster.c
+++ b/src/backend/postmaster/postmaster.c
@@ -37,7 +37,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.591 2009/08/28 17:42:54 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.592 2009/08/28 18:23:53 tgl Exp $
*
* NOTES
*
@@ -3353,7 +3353,6 @@ BackendRun(Port *port)
int ac;
long secs;
int usecs;
- char protobuf[32];
int i;
/*
@@ -3397,10 +3396,6 @@ BackendRun(Port *port)
*/
split_opts(av, &ac, ExtraOptions);
- /* Tell the backend what protocol the frontend is using. */
- snprintf(protobuf, sizeof(protobuf), "-v%u", port->proto);
- av[ac++] = protobuf;
-
/*
* Tell the backend it is being called from the postmaster, and which
* database to use. -y marks the end of secure switches.