diff options
author | Neil Conway <neilc@samurai.com> | 2006-01-11 06:59:22 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2006-01-11 06:59:22 +0000 |
commit | 762bcbdba2a2519b01b17b2c2b28f36e5ee9ea25 (patch) | |
tree | 95a01075dbab86644b3512413db555cfc6308d35 /src | |
parent | 399437acec88b7a4d99f7770a607559eef514aa4 (diff) | |
download | postgresql-762bcbdba2a2519b01b17b2c2b28f36e5ee9ea25.tar.gz postgresql-762bcbdba2a2519b01b17b2c2b28f36e5ee9ea25.zip |
Remove a confusing pair of parentheses.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/mb/mbutils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/utils/mb/mbutils.c b/src/backend/utils/mb/mbutils.c index f8dc7a31922..0bbd48ecd21 100644 --- a/src/backend/utils/mb/mbutils.c +++ b/src/backend/utils/mb/mbutils.c @@ -4,7 +4,7 @@ * (currently mule internal code (mic) is used) * Tatsuo Ishii * - * $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 $ */ #include "postgres.h" @@ -80,8 +80,8 @@ SetClientEncoding(int encoding, bool doit) * Check for cases that require no conversion function. */ if (current_server_encoding == encoding || - (current_server_encoding == PG_SQL_ASCII || - encoding == PG_SQL_ASCII)) + current_server_encoding == PG_SQL_ASCII || + encoding == PG_SQL_ASCII) { if (doit) { |