From: Andrew Deason Date: Fri, 25 Jun 2010 20:03:23 +0000 (-0500) Subject: libafs: correct export_reqhandler prototype X-Git-Tag: openafs-devel-1_5_75~61 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=7005aec9a4a187065048985756f618043d7ec1ed;p=packages%2Fo%2Fopenafs.git libafs: correct export_reqhandler prototype The export_reqhandler function pointer takes an afs_int32*, not an afs_int32 as the fourth argument. Change-Id: I89ef9cfd23a5b673cbbb29fc710236cfe1e3c7cf Reviewed-on: http://gerrit.openafs.org/2257 Tested-by: Andrew Deason Reviewed-by: Derrick Brashear Tested-by: Derrick Brashear --- diff --git a/src/afs/exporter.h b/src/afs/exporter.h index 83dba5c4d..0eedf3036 100644 --- a/src/afs/exporter.h +++ b/src/afs/exporter.h @@ -52,7 +52,7 @@ struct exporterops { int (*export_reqhandler) (struct afs_exporter *exp, afs_ucred_t **cred, afs_uint32 host, - afs_int32 pag, + afs_int32 *pag, struct afs_exporter **expp); void (*export_hold) (struct afs_exporter *exp); void (*export_rele) (struct afs_exporter *exp);