From f3742b7b1b7b072ba651ef8b7739c150f5ede2b5 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Sun, 27 Mar 2011 13:53:25 +0000 Subject: [PATCH] Remove a useless comment in rfc2553_connect_to(). connect(2) is neither Linux nor GNU libc specific and we don't advertise other man pages either. --- jbsockets.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/jbsockets.c b/jbsockets.c index 3b82f2cd..ef851aaa 100644 --- a/jbsockets.c +++ b/jbsockets.c @@ -1,4 +1,4 @@ -const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.81 2011/03/27 13:52:00 fabiankeil Exp $"; +const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.82 2011/03/27 13:53:04 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/jbsockets.c,v $ @@ -322,10 +322,6 @@ static jb_socket rfc2553_connect_to(const char *host, int portnum, struct client if ((select((int)fd + 1, NULL, &wfds, NULL, tv) > 0) && FD_ISSET(fd, &wfds)) { - /* - * See Linux connect(2) man page for more info - * about connecting on non-blocking socket. - */ int socket_in_error; socklen_t optlen = sizeof(socket_in_error); if (!getsockopt(fd, SOL_SOCKET, SO_ERROR, &socket_in_error, &optlen)) -- 2.39.2