diff options
| author | Bruce Momjian | 2011-03-12 14:38:56 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2011-03-12 14:38:56 +0000 |
| commit | 94fe9c0f4e1672ccd830cb0aa7fd5ccce97d14ae (patch) | |
| tree | 5a50e97ac0450e42f24243b5cf7a28aa821ec8c8 /src/test/examples | |
| parent | 3a3f39fdc00c6caa41d795475189ac844403b770 (diff) | |
Use "backend process" rather than "backend server", where appropriate.
Diffstat (limited to 'src/test/examples')
| -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 dafc6aecb1..0ec04313c0 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); |
