Fix pg_server_to_client, that was broken in the previous commit.

This commit is contained in:
Itagaki Takahiro 2011-02-21 16:26:58 +09:00
parent 3cba8240a1
commit ca9cf85d54
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
/*