diff options
author | Damien Miller <djm@mindrot.org> | 2000-03-11 10:45:40 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-03-11 10:45:40 +0100 |
commit | 7bcb089ef791e2b624cf349ba24bf798aebef99a (patch) | |
tree | 40be5ead7ace0d0e16adb69781f05483e58511ca /channels.c | |
parent | More config fixes (diff) | |
download | openssh-7bcb089ef791e2b624cf349ba24bf798aebef99a.tar.xz openssh-7bcb089ef791e2b624cf349ba24bf798aebef99a.zip |
- IPv6 workarounds from Hideaki YOSHIFUJI <yoshfuji@ecei.tohoku.ac.jp>
Diffstat (limited to 'channels.c')
-rw-r--r-- | channels.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/channels.c b/channels.c index 7d5e9a1af..090cbf095 100644 --- a/channels.c +++ b/channels.c @@ -16,7 +16,7 @@ */ #include "includes.h" -RCSID("$Id: channels.c,v 1.17 2000/03/03 11:35:33 damien Exp $"); +RCSID("$Id: channels.c,v 1.18 2000/03/11 09:45:41 damien Exp $"); #include "ssh.h" #include "packet.h" @@ -1215,8 +1215,12 @@ x11_create_display_inet(int screen_number, int x11_display_offset) break; } socks[num_socks++] = sock; +#ifndef DONT_TRY_OTHER_AF if (num_socks == NUM_SOCKS) break; +#else + break; +#endif } if (num_socks > 0) break; |