summaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorBill Paul <wpaul@FreeBSD.org>2000-01-19 06:12:32 +0000
committerBill Paul <wpaul@FreeBSD.org>2000-01-19 06:12:32 +0000
commitc50a9e8f2d5f768bd49f3cb3a0ee98a3aa4ea3e6 (patch)
treea9ec0c0206f0a192acc95a1f10e320c2469bb313 /lib/libc
parent8f0738756ccbc1f9f3afacb6876e9b2cc7f259bb (diff)
Notes
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/xdr/xdr_rec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/xdr/xdr_rec.c b/lib/libc/xdr/xdr_rec.c
index b96b6342165c..7136463df545 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);