multiplex.sh fails in make tests
Damien Miller
djm at mindrot.org
Sat Jul 5 12:34:33 EST 2014
On Fri, 4 Jul 2014, Christian Hesse wrote:
> Hello everybody,
>
> running make tests on latest openssh-portable git master
> (V_6_6_P1-114-g72e6b5c) fails:
Yes, I've been trying to figure that out myself. I think this is the fix:
diff --git channels.c channels.c
index eb63325..a858ac2 100644
--- channels.c
+++ channels.c
@@ -3073,7 +3073,8 @@ channel_request_rforward_cancel(const char *host, u_short port)
return -1;
for (i = 0; i < num_permitted_opens; i++) {
- if (open_listen_match(&permitted_opens[i], host, port, 0))
+ if (open_listen_match(&permitted_opens[i],
+ channel_rfwd_bind_host(host), port, 1))
break;
}
if (i >= num_permitted_opens) {
More information about the openssh-unix-dev
mailing list