Commit 4913efc6 authored by Tom Lane's avatar Tom Lane

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

for that, so use it.
parent f27a4696
...@@ -8,7 +8,7 @@ ...@@ -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) ...@@ -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;
......
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