Skip to content
Snippets Groups Projects
Commit 81fb5173 authored by Magnus Hagander's avatar Magnus Hagander
Browse files

Fix typo that had the code check the same thing twice.

Fujii Masao
parent 8f9fe24b
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-protocol3.c,v 1.42 2010/01/15 09:19:10 heikki Exp $ * $PostgreSQL: pgsql/src/interfaces/libpq/fe-protocol3.c,v 1.43 2010/04/28 13:46:23 mha Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -1909,7 +1909,7 @@ build_startup_packet(const PGconn *conn, char *packet, ...@@ -1909,7 +1909,7 @@ build_startup_packet(const PGconn *conn, char *packet,
ADD_STARTUP_OPTION("user", conn->pguser); ADD_STARTUP_OPTION("user", conn->pguser);
if (conn->dbName && conn->dbName[0]) if (conn->dbName && conn->dbName[0])
ADD_STARTUP_OPTION("database", conn->dbName); ADD_STARTUP_OPTION("database", conn->dbName);
if (conn->replication && conn->replication) if (conn->replication && conn->replication[0])
ADD_STARTUP_OPTION("replication", conn->replication); ADD_STARTUP_OPTION("replication", conn->replication);
if (conn->pgoptions && conn->pgoptions[0]) if (conn->pgoptions && conn->pgoptions[0])
ADD_STARTUP_OPTION("options", conn->pgoptions); ADD_STARTUP_OPTION("options", conn->pgoptions);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment