diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | ssh.c | 4 |
2 files changed, 7 insertions, 1 deletions
@@ -42,6 +42,8 @@ | |||
42 | - itojun@cvs.openbsd.org 2002/06/11 08:11:45 | 42 | - itojun@cvs.openbsd.org 2002/06/11 08:11:45 |
43 | [canohost.c] | 43 | [canohost.c] |
44 | use "ntop" only after initialized | 44 | use "ntop" only after initialized |
45 | - (bal) Cygwin fix up from swap uid clean up in ssh.c patch by | ||
46 | vinschen@redhat.com | ||
45 | 47 | ||
46 | 20020609 | 48 | 20020609 |
47 | - (bal) OpenBSD CVS Sync | 49 | - (bal) OpenBSD CVS Sync |
@@ -907,4 +909,4 @@ | |||
907 | - (stevesk) entropy.c: typo in debug message | 909 | - (stevesk) entropy.c: typo in debug message |
908 | - (djm) ssh-keygen -i needs seeded RNG; report from markus@ | 910 | - (djm) ssh-keygen -i needs seeded RNG; report from markus@ |
909 | 911 | ||
910 | $Id: ChangeLog,v 1.2210 2002/06/11 16:47:22 mouring Exp $ | 912 | $Id: ChangeLog,v 1.2211 2002/06/11 20:28:05 mouring Exp $ |
@@ -615,7 +615,11 @@ again: | |||
615 | 615 | ||
616 | cerr = ssh_connect(host, &hostaddr, options.port, IPv4or6, | 616 | cerr = ssh_connect(host, &hostaddr, options.port, IPv4or6, |
617 | options.connection_attempts, | 617 | options.connection_attempts, |
618 | #ifdef HAVE_CYGWIN | ||
619 | options.use_privileged_port, | ||
620 | #else | ||
618 | original_effective_uid == 0 && options.use_privileged_port, | 621 | original_effective_uid == 0 && options.use_privileged_port, |
622 | #endif | ||
619 | options.proxy_command); | 623 | options.proxy_command); |
620 | 624 | ||
621 | /* | 625 | /* |