]> andersk Git - openssh.git/commitdiff
- stevesk@cvs.openbsd.org 2001/06/29 18:40:28
authormouring <mouring>
Wed, 4 Jul 2001 05:13:35 +0000 (05:13 +0000)
committermouring <mouring>
Wed, 4 Jul 2001 05:13:35 +0000 (05:13 +0000)
     [channels.c]
     use socklen_t for getsockopt arg #5; ok markus@

ChangeLog
channels.c

index 229bd8dcba3dee011f6d9700f5536940ec929d69..3f27cc1937ac363907a89709638bac221b05f705 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
    - stevesk@cvs.openbsd.org 2001/06/29 18:38:44
      [clientloop.c]
      sync function definition with declaration; ok markus@
+   - stevesk@cvs.openbsd.org 2001/06/29 18:40:28
+     [channels.c]
+     use socklen_t for getsockopt arg #5; ok markus@
  
 20010629
  - (bal) Removed net_aton() since we don't use it any more
index 2721ec6bc466205c036719a324331f65d16c80f4..937e059cc147c12095414c44f943718075074a48 100644 (file)
@@ -39,7 +39,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: channels.c,v 1.128 2001/06/25 08:25:35 markus Exp $");
+RCSID("$OpenBSD: channels.c,v 1.129 2001/06/29 18:40:28 stevesk Exp $");
 
 #include "ssh.h"
 #include "ssh1.h"
@@ -1142,7 +1142,7 @@ static void
 channel_post_connecting(Channel *c, fd_set * readset, fd_set * writeset)
 {
        int err = 0;
-       int sz = sizeof(err);
+       socklen_t sz = sizeof(err);
 
        if (FD_ISSET(c->sock, writeset)) {
                if (getsockopt(c->sock, SOL_SOCKET, SO_ERROR, (char *)&err,
This page took 0.232505 seconds and 5 git commands to generate.