From: Itagaki Takahiro Date: Mon, 21 Feb 2011 07:26:58 +0000 (+0900) Subject: Fix pg_server_to_client, that was broken in the previous commit. X-Git-Tag: REL9_1_ALPHA4~121 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ca9cf85d54ec08f37edb37341ad8ee1f20211458;p=thirdparty%2Fpostgresql.git Fix pg_server_to_client, that was broken in the previous commit. --- diff --git a/src/backend/utils/mb/mbutils.c b/src/backend/utils/mb/mbutils.c index b8a2728e4f5..a60188df109 100644 --- a/src/backend/utils/mb/mbutils.c +++ b/src/backend/utils/mb/mbutils.c @@ -569,7 +569,7 @@ pg_server_to_client(const char *s, int len) { Assert(ClientEncoding); - return pg_any_to_server(s, len, ClientEncoding->encoding); + return pg_server_to_any(s, len, ClientEncoding->encoding); } /*