Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit ca9cf85

Browse files
committed
Fix pg_server_to_client, that was broken in the previous commit.
1 parent 3cba824 commit ca9cf85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/utils/mb/mbutils.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ pg_server_to_client(const char *s, int len)
569569
{
570570
Assert(ClientEncoding);
571571

572-
return pg_any_to_server(s, len, ClientEncoding->encoding);
572+
return pg_server_to_any(s, len, ClientEncoding->encoding);
573573
}
574574

575575
/*

0 commit comments

Comments
 (0)