diff options
author | Kevin Steves <stevesk@pobox.com> | 2001-02-05 13:42:17 +0100 |
---|---|---|
committer | Kevin Steves <stevesk@pobox.com> | 2001-02-05 13:42:17 +0100 |
commit | ef4eea9badfb65f05ac24f786b710cc3f27f0e43 (patch) | |
tree | f54abef181ccd6ad5285a5c16b4c159d8b74e932 /serverloop.c | |
parent | - (bal) AIX patch for auth1.c by William L. Jones <jones@hpc.utexas.edu> (diff) | |
download | openssh-ef4eea9badfb65f05ac24f786b710cc3f27f0e43.tar.xz openssh-ef4eea9badfb65f05ac24f786b710cc3f27f0e43.zip |
- stevesk@cvs.openbsd.org 2001/02/04 08:32:27
[many files; did this manually to our top-level source dir]
unexpand and remove end-of-line whitespace; ok markus@
Diffstat (limited to 'serverloop.c')
-rw-r--r-- | serverloop.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/serverloop.c b/serverloop.c index 353733d31..5a567a252 100644 --- a/serverloop.c +++ b/serverloop.c @@ -162,7 +162,7 @@ make_packets_from_stdout_data() } else { /* Keep the packets at reasonable size. */ if (len > packet_get_maxsize()) - len = packet_get_maxsize(); + len = packet_get_maxsize(); } packet_start(SSH_SMSG_STDOUT_DATA); packet_put_string(buffer_ptr(&stdout_buffer), len); @@ -832,7 +832,7 @@ server_input_channel_open(int type, int plen, void *ctxt) xfree(ctype); } -void +void server_input_global_request(int type, int plen, void *ctxt) { char *rtype; @@ -842,7 +842,7 @@ server_input_global_request(int type, int plen, void *ctxt) rtype = packet_get_string(NULL); want_reply = packet_get_char(); debug("server_input_global_request: rtype %s want_reply %d", rtype, want_reply); - + if (strcmp(rtype, "tcpip-forward") == 0) { struct passwd *pw; char *listen_address; |