Get rid of unportable use of socklen_t --- we have a configure test

for that, so use it.
This commit is contained in:
Tom Lane 2010-01-31 17:27:22 +00:00
parent f27a4696f1
commit 4913efc624
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/libpq/auth.c,v 1.192 2010/01/27 12:11:59 mha Exp $ * $PostgreSQL: pgsql/src/backend/libpq/auth.c,v 1.193 2010/01/31 17:27:22 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -2523,7 +2523,7 @@ CheckRADIUSAuth(Port *port)
pgsocket sock; pgsocket sock;
struct sockaddr_in localaddr; struct sockaddr_in localaddr;
struct sockaddr_in remoteaddr; struct sockaddr_in remoteaddr;
socklen_t addrsize; ACCEPT_TYPE_ARG3 addrsize;
fd_set fdset; fd_set fdset;
struct timeval timeout; struct timeval timeout;
int i,r; int i,r;