diff options
author | kan <kan@FreeBSD.org> | 2007-04-04 02:59:54 +0000 |
---|---|---|
committer | kan <kan@FreeBSD.org> | 2007-04-04 02:59:54 +0000 |
commit | aea51276ca3fceefa48c5378743daf047dd727bd (patch) | |
tree | 8c3544e51745f14e072a32875412a7af41773384 /lib/libradius | |
parent | 4c8c917a1ba31b72c240cf482d2efc92c4923940 (diff) | |
download | FreeBSD-src-aea51276ca3fceefa48c5378743daf047dd727bd.zip FreeBSD-src-aea51276ca3fceefa48c5378743daf047dd727bd.tar.gz |
Use correct u_int and socklen_t types for parameters if function is
expecting them, not int.
Diffstat (limited to 'lib/libradius')
-rw-r--r-- | lib/libradius/radlib.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libradius/radlib.c b/lib/libradius/radlib.c index 6060885..b21447e 100644 --- a/lib/libradius/radlib.c +++ b/lib/libradius/radlib.c @@ -182,7 +182,8 @@ is_valid_response(struct rad_handle *h, int srv, #ifdef WITH_SSL HMAC_CTX hctx; u_char resp[MSGSIZE], md[EVP_MAX_MD_SIZE]; - int pos, md_len; + u_int md_len; + int pos; #endif srvp = &h->servers[srv]; @@ -524,7 +525,7 @@ rad_continue_send_request(struct rad_handle *h, int selected, int *fd, if (selected) { struct sockaddr_in from; - int fromlen; + socklen_t fromlen; fromlen = sizeof from; h->resp_len = recvfrom(h->fd, h->response, |