1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-11 20:28:21 +03:00

Fix breakage I introduced yesterday in MULTIBYTE compilations.

Sorry 'bout that, chief...
This commit is contained in:
Tom Lane
2000-10-26 17:31:35 +00:00
parent 62cc75c8fd
commit 8cbda7cbd0
3 changed files with 15 additions and 6 deletions

View File

@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/variable.c,v 1.42 2000/10/25 19:44:44 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/variable.c,v 1.43 2000/10/26 17:31:34 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -665,6 +665,14 @@ reset_client_encoding(void)
return TRUE;
}
/* Called during MULTIBYTE backend startup ... */
void
set_default_client_encoding(void)
{
reset_client_encoding();
}
static bool
parse_server_encoding(char *value)
{