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:
@ -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);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user