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
ee357594
Commit
ee357594
authored
Mar 13, 2002
by
Niels Möller
Browse files
(do_lshg_send_ignore): Use C_WRITE_NOW.
Rev: src/lshg.c:1.16
parent
fd8e9c17
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lshg.c
View file @
ee357594
...
...
@@ -108,7 +108,7 @@ do_lshg_send_debug(struct command *s,
CAST
(
lshg_simple_action
,
self
,
s
);
CAST
(
ssh_connection
,
connection
,
x
);
send_debug_message
(
connection
->
write
,
self
->
msg
,
1
);
send_debug_message
(
connection
,
self
->
msg
,
1
);
}
static
struct
command
*
...
...
@@ -130,7 +130,8 @@ do_lshg_send_ignore(struct command *s,
CAST
(
lshg_simple_action
,
self
,
s
);
CAST
(
ssh_connection
,
connection
,
x
);
C_WRITE
(
connection
,
ssh_format
(
"%c%z"
,
SSH_MSG_IGNORE
,
self
->
msg
));
/* Can be sent even during key exchange. */
C_WRITE_NOW
(
connection
,
ssh_format
(
"%c%z"
,
SSH_MSG_IGNORE
,
self
->
msg
));
}
static
struct
command
*
...
...
Write
Preview
Markdown
is supported
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