diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-07-09 18:59:26 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-07-09 18:59:26 +0000 |
commit | 503df84423a38d4030738bfa38606a67ca776532 (patch) | |
tree | 4c0f0abc51369ccde48b1c679744208781b957d8 /libexec | |
parent | 7548c55007e361b876e5d71a16ace1c37d7baa68 (diff) |
Use socklen_t, not size_t for type of length arg to recvfrom()
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/login_radius/raddauth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/login_radius/raddauth.c b/libexec/login_radius/raddauth.c index f715629443c..5b769d72646 100644 --- a/libexec/login_radius/raddauth.c +++ b/libexec/login_radius/raddauth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: raddauth.c,v 1.2 2001/07/08 20:26:51 millert Exp $ */ +/* $OpenBSD: raddauth.c,v 1.3 2001/07/09 18:59:25 millert Exp $ */ /*- * Copyright (c) 1996, 1997 Berkeley Software Design, Inc. All rights reserved. @@ -419,7 +419,7 @@ int rad_recv(char *state, char *challenge) { auth_hdr_t auth; - size_t salen; + socklen_t salen; struct sockaddr_in sin; salen = sizeof(sin); |