From 23efab0f8fcb3cf712511360cbd9b8eed99ed273 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Thu, 24 Jun 2010 20:05:10 +0200 Subject: socket: Fixed conflicting types. --- include/libssh/socket.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/libssh') diff --git a/include/libssh/socket.h b/include/libssh/socket.h index ade755d7..c7a1994e 100644 --- a/include/libssh/socket.h +++ b/include/libssh/socket.h @@ -38,7 +38,7 @@ int ssh_socket_read(struct socket *s, void *buffer, int len); int ssh_socket_write(struct socket *s,const void *buffer, int len); int ssh_socket_is_open(struct socket *s); int ssh_socket_fd_isset(struct socket *s, fd_set *set); -void ssh_socket_fd_set(struct socket *s, fd_set *set, int *fd_max); +void ssh_socket_fd_set(struct socket *s, fd_set *set, socket_t *max_fd) { int ssh_socket_completeread(struct socket *s, void *buffer, uint32_t len); int ssh_socket_completewrite(struct socket *s, const void *buffer, uint32_t len); int ssh_socket_wait_for_data(struct socket *s, ssh_session session, uint32_t len); -- cgit