This is patch set 385 obtained from sourceforge cvs using cvsps. --- nfs-utils-1.0.7-kwc/ChangeLog | 3 +++ nfs-utils-1.0.7-kwc/support/rpc/svc_auth_gss.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff -puN ChangeLog~nfsutils_patchset_385 ChangeLog --- nfs-utils-1.0.7/ChangeLog~nfsutils_patchset_385 2005-10-07 17:50:31.278508000 -0400 +++ nfs-utils-1.0.7-kwc/ChangeLog 2005-10-10 11:40:18.654914000 -0400 @@ -1,5 +1,8 @@ 2005-04-06 Chip Salzenberg + * support/rpc/svc_auth_gss.c (_svcauth_gss): Avoid using a cast as + an lvalue, as it is non-portable. + * support/nfs/exports.c (parseopts): Accept "acl" option to mean ~NFSEXP_NOACL, and "no_acl" to mean NFSEXP_NOACL. (putexportent): Report NFSEXP_NOACL as "no_acl", and ~NFSEXP_NOACL diff -puN support/rpc/svc_auth_gss.c~nfsutils_patchset_385 support/rpc/svc_auth_gss.c --- nfs-utils-1.0.7/support/rpc/svc_auth_gss.c~nfsutils_patchset_385 2005-10-07 17:50:31.297508000 -0400 +++ nfs-utils-1.0.7-kwc/support/rpc/svc_auth_gss.c 2005-10-10 11:39:47.863676000 -0400 @@ -382,7 +382,7 @@ _svcauth_gss(struct svc_req *rqst, struc return (AUTH_FAILED); } auth->svc_ah_ops = &svc_auth_gss_ops; - SVCAUTH_PRIVATE(auth) = gd; + auth->svc_ah_private = (caddr_t)gd; rqst->rq_xprt->xp_auth = auth; } else gd = SVCAUTH_PRIVATE(rqst->rq_xprt->xp_auth); _