mirror of
https://github.com/sheumann/hush.git
synced 2024-12-21 23:29:34 +00:00
accept() takes a socklen_t, not an int
This commit is contained in:
parent
d2c8fd6360
commit
06b00e8ba7
@ -525,7 +525,8 @@ telnetd_main(int argc, char **argv)
|
||||
#ifndef CONFIG_FEATURE_TELNETD_INETD
|
||||
/* First check for and accept new sessions. */
|
||||
if (FD_ISSET(master_fd, &rdfdset)) {
|
||||
int fd, salen;
|
||||
int fd;
|
||||
socklen_t salen;
|
||||
|
||||
salen = sizeof(sa);
|
||||
if ((fd = accept(master_fd, (struct sockaddr *)&sa,
|
||||
|
Loading…
Reference in New Issue
Block a user