1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-01 11:32:48 -05:00

Formatting: fix a few mis-spaced assignments.

I spotted one of those in the raw backend the other day, and now I've
got round to finding a bunch more and fixing them.
This commit is contained in:
Simon Tatham
2022-12-28 15:28:36 +00:00
parent 9f2e1e6e03
commit 6fcc7ed728
6 changed files with 16 additions and 16 deletions

View File

@ -91,7 +91,7 @@ static void raw_closing(Plug *plug, PlugCloseType type, const char *error_msg)
if (!raw->sent_socket_eof) {
if (raw->s)
sk_write_eof(raw->s);
raw->sent_socket_eof= true;
raw->sent_socket_eof = true;
}
}
raw->sent_console_eof = true;
@ -287,7 +287,7 @@ static void raw_special(Backend *be, SessionSpecialCode code, int arg)
if (code == SS_EOF && raw->s) {
if (!raw->sent_socket_eof)
sk_write_eof(raw->s);
raw->sent_socket_eof= true;
raw->sent_socket_eof = true;
raw_check_close(raw);
}