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

Commit 762bcbd

Browse files
author
Neil Conway
committed
Remove a confusing pair of parentheses.
1 parent 399437a commit 762bcbd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/utils/mb/mbutils.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* (currently mule internal code (mic) is used)
55
* Tatsuo Ishii
66
*
7-
* $PostgreSQL: pgsql/src/backend/utils/mb/mbutils.c,v 1.52 2005/10/15 02:49:33 momjian Exp $
7+
* $PostgreSQL: pgsql/src/backend/utils/mb/mbutils.c,v 1.53 2006/01/11 06:59:22 neilc Exp $
88
*/
99
#include "postgres.h"
1010

@@ -80,8 +80,8 @@ SetClientEncoding(int encoding, bool doit)
8080
* Check for cases that require no conversion function.
8181
*/
8282
if (current_server_encoding == encoding ||
83-
(current_server_encoding == PG_SQL_ASCII ||
84-
encoding == PG_SQL_ASCII))
83+
current_server_encoding == PG_SQL_ASCII ||
84+
encoding == PG_SQL_ASCII)
8585
{
8686
if (doit)
8787
{

0 commit comments

Comments
 (0)