summaryrefslogtreecommitdiffstats
path: root/netrom
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2009-06-14 16:25:26 +0000
committerRalf Baechle <ralf@linux-mips.org>2009-06-14 16:25:26 +0000
commit49db7b428a4752749fb421bfbe50946cafa2fc3f (patch)
tree66b2225fa378df22ad147c278b9b94110a22c3c2 /netrom
parenta7c513d8dc2f4dc2f9a7ae91736f2f2870f2c892 (diff)
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.
Diffstat (limited to 'netrom')
-rw-r--r--netrom/netromd.c2
1 files changed, 1 insertions, 1 deletions
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;