Commit 63354a02 authored by Bruce Momjian's avatar Bruce Momjian

Remove extra paren in NOT_USED code, found by pgindent.

parent 455a55fc
......@@ -11,7 +11,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-secure.c,v 1.25 2003/06/14 18:20:32 momjian Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-secure.c,v 1.26 2003/08/04 00:26:49 momjian Exp $
*
* NOTES
* The client *requires* a valid server certificate. Since
......@@ -463,7 +463,7 @@ verify_peer(PGconn *conn)
}
/* what do we know about the peer's common name? */
if ((h == NULL)
if (h == NULL)
{
printfPQExpBuffer(&conn->errorMessage,
libpq_gettext("could not get information about host (%s): %s\n"),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment