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/command.c | |
parent | ad155605739705297be5429d920320d15c4facbe (diff) | |
download | postgresql-b304b4a90e11db93a564935c41c1fb69df9483ec.tar.gz postgresql-b304b4a90e11db93a564935c41c1fb69df9483ec.zip |
Change function name PQclientencoding to PQclientEncoding since
it seems more suitable for the naming convention in libpq.
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r-- | src/bin/psql/command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index 1441fbc0bcc..63ac6fbff42 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.16 2000/01/29 16:58:48 petere Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.17 2000/02/05 12:27:56 ishii Exp $ */ #include <c.h> #include "command.h" @@ -984,7 +984,7 @@ do_connect(const char *new_dbname, const char *new_user) } PQsetNoticeProcessor(pset.db, NoticeProcessor, NULL); - pset.encoding = PQclientencoding(pset.db); + pset.encoding = PQclientEncoding(pset.db); /* Update variables */ SetVariable(pset.vars, "DBNAME", PQdb(pset.db)); |