From: Tom Lane <tgl@sss.pgh.pa.us>
Date: Thu, 2 Aug 2001 14:39:35 +0000 (+0000)
Subject: Even though SO_PEERCRED is probably totally unportable, might as well
X-Git-Tag: REL7_2_BETA1~785
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d00b272299f1fdccfcca9c8df183f1cfc35cbb54;p=postgresql

Even though SO_PEERCRED is probably totally unportable, might as well
declare the getsockopt parameter as ACCEPT_TYPE_ARG3 to be consistent
with our other uses of getsockopt.
---

diff --git a/src/backend/libpq/hba.c b/src/backend/libpq/hba.c
index 4846f8fb5f..b91427460d 100644
--- a/src/backend/libpq/hba.c
+++ b/src/backend/libpq/hba.c
@@ -10,7 +10,7 @@
  *
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/libpq/hba.c,v 1.60 2001/08/02 14:27:40 tgl Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/libpq/hba.c,v 1.61 2001/08/02 14:39:35 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -863,11 +863,10 @@ ident_unix(int sock, char *ident_user)
 #ifdef SO_PEERCRED
 	/* Linux style: use getsockopt(SO_PEERCRED) */
 	struct ucred	peercred;
-	socklen_t		so_len;
+	ACCEPT_TYPE_ARG3 so_len = sizeof(peercred);
 	struct passwd *pass;
 
 	errno = 0;
-	so_len = sizeof(peercred);
 	if (getsockopt(sock, SOL_SOCKET, SO_PEERCRED, &peercred, &so_len) != 0 ||
 		so_len != sizeof(peercred))
 	{