Skip to content
GitLab
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
58ceb463
Commit
58ceb463
authored
Jun 20, 2001
by
Niels Möller
Browse files
* src/client_escape.c (do_escape_handler): Fixed the EOF case.
Rev: src/client_escape.c:1.3
parent
76276a99
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/client_escape.c
View file @
58ceb463
...
...
@@ -123,9 +123,12 @@ do_escape_handler(struct abstract_write *s, struct lsh_string *packet)
UINT32
done
;
if
(
!
packet
)
/* EOF. Pass it on */
A_WRITE
(
self
->
super
.
next
,
packet
);
{
/* EOF. Pass it on */
A_WRITE
(
self
->
super
.
next
,
packet
);
return
;
}
assert
(
packet
->
length
);
/* done is the length of the prefix of the data that is already
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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