mirror of
http://galexander.org/git/simplesshd.git
synced 2024-11-27 01:38:11 +00:00
Fix one warning... A lot of warnings remain in dropbear, but hopefully
the dropbear update will address them so let's not touch it for now.
This commit is contained in:
parent
cec5e52c7e
commit
ccc93ed0da
@ -1525,7 +1525,7 @@ z_streamp strm;
|
||||
{
|
||||
struct inflate_state FAR *state;
|
||||
|
||||
if (strm == Z_NULL || strm->state == Z_NULL) return -1L << 16;
|
||||
if (strm == Z_NULL || strm->state == Z_NULL) return ~0xffffL;
|
||||
state = (struct inflate_state FAR *)strm->state;
|
||||
return ((long)(state->back) << 16) +
|
||||
(state->mode == COPY ? state->length :
|
||||
|
Loading…
Reference in New Issue
Block a user