From 020f172895e23e3c0732c38763ee103c831f5b69 Mon Sep 17 00:00:00 2001 From: Ronnie Sahlberg Date: Thu, 5 Jul 2012 07:35:04 +1000 Subject: [PATCH] fix compiler warning --- lib/libnfs-zdr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.34.1