Commit ca9cf85d authored by Itagaki Takahiro's avatar Itagaki Takahiro

Fix pg_server_to_client, that was broken in the previous commit.

parent 3cba8240
......@@ -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);
}
/*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment