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
8142da89
Commit
8142da89
authored
Feb 02, 2000
by
Niels Möller
Browse files
* src/client.c: Signedness fixes.
Rev: src/client.c:1.82
parent
75117a4e
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/client.c
View file @
8142da89
...
...
@@ -74,8 +74,8 @@ do_accept_service(struct packet_handler *c,
CAST
(
accept_service_handler
,
closure
,
c
);
struct
simple_buffer
buffer
;
int
msg_number
;
int
name
;
unsigned
msg_number
;
UINT32
name
;
simple_buffer_init
(
&
buffer
,
packet
->
length
,
packet
->
data
);
...
...
@@ -232,7 +232,7 @@ do_exit_status(struct channel_request *c,
struct
simple_buffer
*
args
)
{
CAST
(
exit_handler
,
closure
,
c
);
int
status
;
UINT32
status
;
if
(
!
want_reply
&&
parse_uint32
(
args
,
&
status
)
...
...
@@ -263,7 +263,7 @@ do_exit_signal(struct channel_request *c,
{
CAST
(
exit_handler
,
closure
,
c
);
int
signal
;
UINT32
signal
;
int
core
;
UINT8
*
msg
;
...
...
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