From: Ronnie Sahlberg Date: Wed, 4 Jul 2012 21:35:04 +0000 (+1000) Subject: fix compiler warning X-Git-Tag: upstream/1.9.6^2~242^2~18 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;ds=sidebyside;h=020f172895e23e3c0732c38763ee103c831f5b69;p=deb_libnfs.git fix compiler warning --- diff --git a/lib/libnfs-zdr.c b/lib/libnfs-zdr.c index e439249..a159632 100644 --- a/lib/libnfs-zdr.c +++ b/lib/libnfs-zdr.c @@ -286,7 +286,7 @@ static bool_t libnfs_opaque_auth(ZDR *zdrs, struct opaque_auth *auth) return FALSE; } - if (!libnfs_zdr_bytes(zdrs, &auth->oa_base, &auth->oa_length, &auth->oa_length)) { + if (!libnfs_zdr_bytes(zdrs, &auth->oa_base, &auth->oa_length, auth->oa_length)) { return FALSE; }