summaryrefslogtreecommitdiff
path: root/session.c
diff options
context:
space:
mode:
Diffstat (limited to 'session.c')
-rw-r--r--session.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/session.c b/session.c
index 8720ae7be..cf2098931 100644
--- a/session.c
+++ b/session.c
@@ -33,7 +33,7 @@
33 */ 33 */
34 34
35#include "includes.h" 35#include "includes.h"
36RCSID("$OpenBSD: session.c,v 1.176 2004/06/21 17:53:03 djm Exp $"); 36RCSID("$OpenBSD: session.c,v 1.177 2004/06/30 08:36:59 djm Exp $");
37 37
38#include "ssh.h" 38#include "ssh.h"
39#include "ssh1.h" 39#include "ssh1.h"
@@ -1920,15 +1920,16 @@ session_input_channel_req(Channel *c, const char *rtype)
1920 success = session_auth_agent_req(s); 1920 success = session_auth_agent_req(s);
1921 } else if (strcmp(rtype, "subsystem") == 0) { 1921 } else if (strcmp(rtype, "subsystem") == 0) {
1922 success = session_subsystem_req(s); 1922 success = session_subsystem_req(s);
1923 } else if (strcmp(rtype, "break") == 0) {
1924 success = session_break_req(s);
1925 } else if (strcmp(rtype, "env") == 0) { 1923 } else if (strcmp(rtype, "env") == 0) {
1926 success = session_env_req(s); 1924 success = session_env_req(s);
1927 } 1925 }
1928 } 1926 }
1929 if (strcmp(rtype, "window-change") == 0) { 1927 if (strcmp(rtype, "window-change") == 0) {
1930 success = session_window_change_req(s); 1928 success = session_window_change_req(s);
1929 } else if (strcmp(rtype, "break") == 0) {
1930 success = session_break_req(s);
1931 } 1931 }
1932
1932 return success; 1933 return success;
1933} 1934}
1934 1935