We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 399437a commit 762bcbdCopy full SHA for 762bcbd
src/backend/utils/mb/mbutils.c
@@ -4,7 +4,7 @@
4
* (currently mule internal code (mic) is used)
5
* Tatsuo Ishii
6
*
7
- * $PostgreSQL: pgsql/src/backend/utils/mb/mbutils.c,v 1.52 2005/10/15 02:49:33 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/utils/mb/mbutils.c,v 1.53 2006/01/11 06:59:22 neilc Exp $
8
*/
9
#include "postgres.h"
10
@@ -80,8 +80,8 @@ SetClientEncoding(int encoding, bool doit)
80
* Check for cases that require no conversion function.
81
82
if (current_server_encoding == encoding ||
83
- (current_server_encoding == PG_SQL_ASCII ||
84
- encoding == PG_SQL_ASCII))
+ current_server_encoding == PG_SQL_ASCII ||
+ encoding == PG_SQL_ASCII)
85
{
86
if (doit)
87
0 commit comments