diff options
Diffstat (limited to 'src/test/examples/testlibpq4.c')
-rw-r--r-- | src/test/examples/testlibpq4.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/examples/testlibpq4.c b/src/test/examples/testlibpq4.c index dafc6aecb12..0ec04313c0c 100644 --- a/src/test/examples/testlibpq4.c +++ b/src/test/examples/testlibpq4.c @@ -72,11 +72,11 @@ main(int argc, char **argv) * defaults by looking up environment variables or, failing that, using * hardwired constants */ - pghost = NULL; /* host name of the backend server */ - pgport = NULL; /* port of the backend server */ + pghost = NULL; /* host name of the backend */ + pgport = NULL; /* port of the backend */ pgoptions = NULL; /* special options to start up the backend * server */ - pgtty = NULL; /* debugging tty for the backend server */ + pgtty = NULL; /* debugging tty for the backend */ /* make a connection to the database */ conn1 = PQsetdb(pghost, pgport, pgoptions, pgtty, dbName1); |