diff options
Diffstat (limited to 'lib/libc/xdr')
-rw-r--r-- | lib/libc/xdr/xdr_rec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/xdr/xdr_rec.c b/lib/libc/xdr/xdr_rec.c index b96b634..7136463 100644 --- a/lib/libc/xdr/xdr_rec.c +++ b/lib/libc/xdr/xdr_rec.c @@ -558,7 +558,7 @@ set_input_fragment(rstrm) * but we don't have any way to be certain that they aren't * what the client actually intended to send us. */ - if ((header & (~LAST_FRAG)) == 0) + if (header == 0) return(FALSE); rstrm->fbtbc = header & (~LAST_FRAG); return (TRUE); |