accept() takes a socklen_t, not an int

This commit is contained in:
Mike Frysinger 2006-05-10 17:18:11 +00:00
parent d2c8fd6360
commit 06b00e8ba7

View File

@ -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,