mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Do not use int where socklen_t is expected.
This commit is contained in:
parent
fa034a084b
commit
53d588be85
1 changed files with 2 additions and 1 deletions
|
|
@ -74,10 +74,11 @@ main(argc, argv)
|
|||
{
|
||||
struct netinfo6 *np;
|
||||
struct sockaddr_in6 fsock;
|
||||
int i, n, len, flen;
|
||||
int i, n, len;
|
||||
int c;
|
||||
int ifidx = -1;
|
||||
int error;
|
||||
socklen_t flen;
|
||||
char pbuf[10];
|
||||
struct addrinfo hints, *res;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue