11
11
*
12
12
*
13
13
* IDENTIFICATION
14
- * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-secure.c,v 1.11 2002/09/04 20:31:47 momjian Exp $
14
+ * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-secure.c,v 1.12 2002/09/05 18:27:13 petere Exp $
15
15
*
16
16
* NOTES
17
17
* The client *requires* a valid server certificate. Since
@@ -364,7 +364,7 @@ verify_cb(int ok, X509_STORE_CTX *ctx)
364
364
365
365
/*
366
366
*Verify that common name resolves to peer.
367
- *This function is not thread-safe due togethostbyname2 ().
367
+ *This function is not thread-safe due togethostbyname ().
368
368
*/
369
369
static int
370
370
verify_peer (PGconn * conn )
@@ -391,7 +391,7 @@ verify_peer(PGconn *conn)
391
391
return 0 ;
392
392
393
393
/* what do we know about the peer's common name? */
394
- if ((h = gethostbyname2 (conn -> peer_cn , addr . sa_family ))== NULL )
394
+ if ((h = gethostbyname (conn -> peer_cn ))== NULL )
395
395
{
396
396
printfPQExpBuffer (& conn -> errorMessage ,
397
397
libpq_gettext ("error getting information about host (%s): %s\n" ),