From: Antoine Verheijen Date: Wed, 19 Jan 2011 20:30:24 +0000 (-0700) Subject: OpenBSD: Fix parameters in call to afs_close() X-Git-Tag: upstream/1.6.0.pre2^2~135 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=ed7b24c1bc8b26a5c8099105a0078c4eb7181c39;p=packages%2Fo%2Fopenafs.git OpenBSD: Fix parameters in call to afs_close() OpenBSD passes an extra parameter in a call to afs_close() in its OS-specific code. It went undetected in the past but now causes compile headaches because of more accurate prototypes in the header file. This patch removes the offending extra parameter (which never actually caused any problems because it was the last one in the parameter list). Reviewed-on: http://gerrit.openafs.org/3685 Tested-by: BuildBot Reviewed-by: Derrick Brashear (cherry picked from commit 5ff6c88fcc0c35843e91dc45e4bd297efd0d4445) Change-Id: I7d2df5fe80bd4de8c74200ada879a7bc1358e134 Reviewed-on: http://gerrit.openafs.org/3719 Tested-by: BuildBot Reviewed-by: Derrick Brashear --- diff --git a/src/afs/OBSD/osi_vnodeops.c b/src/afs/OBSD/osi_vnodeops.c index b45ba6cfb..317cb52a6 100644 --- a/src/afs/OBSD/osi_vnodeops.c +++ b/src/afs/OBSD/osi_vnodeops.c @@ -394,7 +394,7 @@ afs_obsd_close(void *v) int code; AFS_GLOCK(); - code = afs_close(VTOAFS(ap->a_vp), ap->a_fflag, ap->a_cred, ap->a_p); + code = afs_close(VTOAFS(ap->a_vp), ap->a_fflag, ap->a_cred); AFS_GUNLOCK(); return code; }