diff options
author | Tatsuo Ishii <ishii@postgresql.org> | 2000-02-05 12:27:56 +0000 |
---|---|---|
committer | Tatsuo Ishii <ishii@postgresql.org> | 2000-02-05 12:27:56 +0000 |
commit | b304b4a90e11db93a564935c41c1fb69df9483ec (patch) | |
tree | a6e6a7567c9f2a228c233d2b3fc8e7960119bccf /src/bin/psql/startup.c | |
parent | ad155605739705297be5429d920320d15c4facbe (diff) |
Change function name PQclientencoding to PQclientEncoding since
it seems more suitable for the naming convention in libpq.
Diffstat (limited to 'src/bin/psql/startup.c')
-rw-r--r-- | src/bin/psql/startup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/startup.c b/src/bin/psql/startup.c index d92adce381e..478356deb55 100644 --- a/src/bin/psql/startup.c +++ b/src/bin/psql/startup.c @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/startup.c,v 1.20 2000/01/29 16:58:49 petere Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/startup.c,v 1.21 2000/02/05 12:27:56 ishii Exp $ */ #include <c.h> @@ -173,7 +173,7 @@ main(int argc, char **argv) * We need to save the encoding because we want to have it * available even if the database connection goes bad. */ - pset.encoding = PQclientencoding(pset.db); + pset.encoding = PQclientEncoding(pset.db); if (options.action == ACT_LIST_DB) { |