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/libpq/pqcomm.c | |
| parent | 86f27321e25b5a1a7b6c78400e54f063525b07d5 (diff) | |
| download | postgresql-77f7763b55a89254f3b4be1f92402188bf2575b8.tar.gz | |
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/libpq/pqcomm.c')
| -rw-r--r-- | src/backend/libpq/pqcomm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/libpq/pqcomm.c b/src/backend/libpq/pqcomm.c index 38b84a4a29..b8d3b8b7c2 100644 --- a/src/backend/libpq/pqcomm.c +++ b/src/backend/libpq/pqcomm.c @@ -29,7 +29,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pqcomm.c,v 1.138 2002/09/02 02:47:02 momjian Exp $ + * $Id: pqcomm.c,v 1.139 2002/09/03 21:45:42 petere Exp $ * *------------------------------------------------------------------------- */ @@ -556,9 +556,9 @@ pq_getbytes(char *s, size_t len) * The return value is placed in an expansible StringInfo. * Note that space allocation comes from the current memory context! * - * NOTE: this routine does not do any MULTIBYTE conversion, + * NOTE: this routine does not do any character set conversion, * even though it is presumably useful only for text, because - * no code in this module should depend on MULTIBYTE mode. + * no code in this module should depend on the encoding. * See pq_getstr in pqformat.c for that. * * returns 0 if OK, EOF if trouble |
