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. --- netrom/netromd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'netrom') diff --git a/netrom/netromd.c b/netrom/netromd.c index 7bfa97b..0a16fd3 100644 --- a/netrom/netromd.c +++ b/netrom/netromd.c @@ -138,7 +138,7 @@ int main(int argc, char **argv) unsigned char buffer[512]; int size, s, i; struct sockaddr sa; - int asize; + socklen_t asize; struct timeval timeout; time_t timenow, timelast; int interval = 3600; -- cgit v1.2.3