From 49db7b428a4752749fb421bfbe50946cafa2fc3f Mon Sep 17 00:00:00 2001 From: Ralf Baechle Date: Sun, 14 Jun 2009 16:25:26 +0000 Subject: Fix type of length argument to sockset syscalls. Various socket syscalls receive a length argument that should be a socklen_t rsp. a ptr to a socklen_t but instead int rsp. ptr to int were being passed. While in theory this was a bug it's harmless as dangerously large values would not be used but the issue manifested itself in a significant number of compilation warnings. --- tcpip/rip98r.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tcpip/rip98r.c') diff --git a/tcpip/rip98r.c b/tcpip/rip98r.c index 25cb546..9a623ff 100644 --- a/tcpip/rip98r.c +++ b/tcpip/rip98r.c @@ -82,7 +82,8 @@ void receive_routes(int s) unsigned long int netmask; unsigned long int network; int bits, metric; - int size, found, matched; + int found, matched; + socklen_t size; int mess_len; int i; -- cgit v1.2.3