Remove a useless comment in rfc2553_connect_to().
authorFabian Keil <fk@fabiankeil.de>
Sun, 27 Mar 2011 13:53:25 +0000 (13:53 +0000)
committerFabian Keil <fk@fabiankeil.de>
Sun, 27 Mar 2011 13:53:25 +0000 (13:53 +0000)
connect(2) is neither Linux nor GNU libc specific
and we don't advertise other man pages either.

jbsockets.c

index 3b82f2c..ef851aa 100644 (file)
@@ -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))