Bugzilla – Attachment 1537 Details for
Bug 1395
"session_input_channel_req: no session" should be a debug message
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
only pass requests on session channels through to session handler
only-session-channels.diff (text/plain), 721 bytes, created by
Damien Miller
on 2008-06-30 22:12:32 AEST
(
hide
)
Description:
only pass requests on session channels through to session handler
Filename:
MIME Type:
Creator:
Damien Miller
Created:
2008-06-30 22:12:32 AEST
Size:
721 bytes
patch
obsolete
>Index: serverloop.c >=================================================================== >RCS file: /cvs/src/usr.bin/ssh/serverloop.c,v >retrieving revision 1.152 >diff -u -p -r1.152 serverloop.c >--- serverloop.c 10 Jun 2008 22:15:23 -0000 1.152 >+++ serverloop.c 30 Jun 2008 12:10:53 -0000 >@@ -1135,7 +1135,8 @@ server_input_channel_req(int type, u_int > if (!strcmp(rtype, "eow@openssh.com")) { > packet_check_eom(); > chan_rcvd_eow(c); >- } else if (c->type == SSH_CHANNEL_LARVAL || c->type == SSH_CHANNEL_OPEN) >+ } else if ((c->type == SSH_CHANNEL_LARVAL || >+ c->type == SSH_CHANNEL_OPEN) && strcmp(c->ctype, "session") == 0) > success = session_input_channel_req(c, rtype); > if (reply) { > packet_start(success ?
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1395
:
1385
| 1537