diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2002-09-03 21:45:44 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2002-09-03 21:45:44 +0000 |
commit | 77f7763b55a89254f3b4be1f92402188bf2575b8 (patch) | |
tree | 95af88df05d1251ee25dd28cf826c664748daa14 /src/backend/commands/dbcommands.c | |
parent | 86f27321e25b5a1a7b6c78400e54f063525b07d5 (diff) | |
download | postgresql-77f7763b55a89254f3b4be1f92402188bf2575b8.tar.gz postgresql-77f7763b55a89254f3b4be1f92402188bf2575b8.zip |
Remove all traces of multibyte and locale options. Clean up comments
referring to "multibyte" where it really means character encoding.
Diffstat (limited to 'src/backend/commands/dbcommands.c')
-rw-r--r-- | src/backend/commands/dbcommands.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/dbcommands.c b/src/backend/commands/dbcommands.c index 8d777c7e0bd..e62eaabb31f 100644 --- a/src/backend/commands/dbcommands.c +++ b/src/backend/commands/dbcommands.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/dbcommands.c,v 1.102 2002/09/02 02:47:01 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/dbcommands.c,v 1.103 2002/09/03 21:45:41 petere Exp $ * *------------------------------------------------------------------------- */ @@ -591,7 +591,7 @@ get_db_info(const char *name, Oid *dbIdP, int4 *ownerIdP, /* sysid of the owner */ if (ownerIdP) *ownerIdP = dbform->datdba; - /* multibyte encoding */ + /* character encoding */ if (encodingP) *encodingP = dbform->encoding; /* allowed as template? */ |