Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
LSH
lsh
Commits
0f4f9fc7
Commit
0f4f9fc7
authored
Sep 28, 2001
by
Niels Möller
Browse files
*** empty log message ***
Rev: ChangeLog:1.423 Rev: src/lshd.c:1.129
parent
f3ca467b
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
0f4f9fc7
2001-09-28 Niels Mller <nisse@cuckoo.hack.org>
* src/server_session.c (do_eof): Use close_fd_nicely instead of
write_buffer_close.
* src/sexp_test.c (do_close): Likewise.
* src/io.c (do_write_close): Deleted function.
(close_fd): Set the flag write_buffer->closed directly, instead of
calling FD_WRITE_CLOSE.
(close_fd_nicely): Don't use FD_WRITE_CLOSE, instead, set the
write_buffer->closed flag, and close the fd if the write_buffer is
empty.
* src/io.h (FD_WRITE_CLOSE): Deleted method.
* src/write_buffer.c (write_buffer_close): Deleted. The closed
flag is now set by close_fd and close_fd_nicely. Everybody else
should be using those functions.
* src/tcpforward_commands.c (install_forwarded_tcpip_handler):
Static command deleted, not used anywhere.
2001-09-28 Niels Mller <nisse@ehand.com>
* src/tty.c (tty_setwinsize): Rows and columns were mixed up.
...
...
src/lshd.c
View file @
0f4f9fc7
...
...
@@ -864,7 +864,7 @@ int main(int argc, char **argv)
ALIST_SET
(
supported_channel_requests
,
ATOM_PTY_REQ
,
&
pty_request_handler
.
super
);
ALIST_SET
(
supported_channel_requests
,
ATOM_WINDOW_CHANGE
,
&
window_change_request_handler
);
ATOM_WINDOW_CHANGE
,
&
window_change_request_handler
.
super
);
}
#endif
/* WITH_PTY_SUPPORT */
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment