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

Commit 63354a0

Browse files
committed
Remove extra paren in NOT_USED code, found by pgindent.
1 parent 455a55f commit 63354a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/interfaces/libpq/fe-secure.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*
1212
*
1313
* IDENTIFICATION
14-
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-secure.c,v 1.25 2003/06/14 18:20:32 momjian Exp $
14+
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-secure.c,v 1.26 2003/08/04 00:26:49 momjian Exp $
1515
*
1616
* NOTES
1717
* The client *requires* a valid server certificate. Since
@@ -463,7 +463,7 @@ verify_peer(PGconn *conn)
463463
}
464464

465465
/* what do we know about the peer's common name? */
466-
if ((h == NULL)
466+
if (h == NULL)
467467
{
468468
printfPQExpBuffer(&conn->errorMessage,
469469
libpq_gettext("could not get information about host (%s): %s\n"),

0 commit comments

Comments
 (0)