summaryrefslogtreecommitdiffstats
path: root/ax25mond
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2009-06-14 16:25:33 +0000
committerRalf Baechle <ralf@linux-mips.org>2009-06-14 16:25:33 +0000
commitccacf84f7602946c76944aae6ce1d5e2aa2b4814 (patch)
treee95ee463e16d02ced5c39a62a111ce70ca36f8b6 /ax25mond
parentcd98bf42c5ab3cb061a32068d866616c71c40bf9 (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 'ax25mond')
-rw-r--r--ax25mond/ax25mond.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ax25mond/ax25mond.c b/ax25mond/ax25mond.c
index 81b2da9..6f842e1 100644
--- a/ax25mond/ax25mond.c
+++ b/ax25mond/ax25mond.c
@@ -68,7 +68,7 @@ char sock_filename[MAX_SOCKETS][100];
int sock_num = 0;
int conn_list[MAX_CONNECTS];
struct sockaddr conn_addr[MAX_CONNECTS];
-int conn_addrlen[MAX_CONNECTS];
+socklen_t conn_addrlen[MAX_CONNECTS];
char conn_monmode[MAX_CONNECTS];
int conn_num = 0;
int highest_sock_fd;
@@ -215,7 +215,7 @@ int main(int argc, char *argv[])
fd_set monavail;
int monrx_fd, monrxtx_fd;
struct sockaddr monfrom;
- int monfromlen;
+ socklen_t monfromlen;
fd_set conn_request;
struct timeval tv;
char buf[500];