X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=audiod_command.c;h=19537cf0959f40effa9c64fa579e791e737338eb;hb=ad37397a4f7734394ef1f03b4b54a54226421a4e;hp=bb54dfab87f7965a18f6cccbe6bc4077c147fa29;hpb=4ddaef74ff8f605a31c499d77fcaaffa7a3708c0;p=paraslash.git diff --git a/audiod_command.c b/audiod_command.c index bb54dfab..19537cf0 100644 --- a/audiod_command.c +++ b/audiod_command.c @@ -360,7 +360,6 @@ EXPORT_AUDIOD_CMD_HANDLER(version) * Handle arriving connections on the local socket. * * \param accept_fd The fd to accept connections on. - * \param rfds If \a accept_fd is not set in \a rfds, do nothing. * * This is called in each iteration of the select loop. If there is an incoming * connection on \a accept_fd, this function reads the command sent by the peer, @@ -373,7 +372,7 @@ EXPORT_AUDIOD_CMD_HANDLER(version) * * \sa \ref para_accept(), \ref recv_cred_buffer(). * */ -int handle_connect(int accept_fd, fd_set *rfds) +int handle_connect(int accept_fd) { int argc, ret, clifd; char buf[MAXLINE], **argv = NULL; @@ -384,7 +383,7 @@ int handle_connect(int accept_fd, fd_set *rfds) char *errctx = NULL; const struct audiod_command_info *aci; - ret = para_accept(accept_fd, rfds, &unix_addr, sizeof(struct sockaddr_un), &clifd); + ret = para_accept(accept_fd, &unix_addr, sizeof(struct sockaddr_un), &clifd); if (ret <= 0) return ret; ret = recv_cred_buffer(clifd, buf, sizeof(buf) - 1);