SOLARIS: Fix 'struct caller_context_t' references

caller_context_t is a type itself, not a struct name.

Change-Id: I0966f5be326cdad706324d8547a63518bbce6edc
Reviewed-on: https://gerrit.openafs.org/12699
Reviewed-by: Michael Meffie <mmeffie@sinenomine.net>
Reviewed-by: Marcio Brito Barbosa <marciobritobarbosa@yahoo.com>
Reviewed-by: Mark Vitale <mvitale@sinenomine.net>
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Andrew Deason <adeason@sinenomine.net>
This commit is contained in:
Andrew Deason 2017-08-09 20:06:16 -05:00
parent 6a41f365b6
commit 1c34af8241

View File

@ -1234,19 +1234,19 @@ afs_dumpctl(struct vnode *vp, int i)
#ifdef AFS_SUN511_ENV
static void
afs_dispose(struct vnode *vp, struct page *p, int fl, int dn, struct cred *cr, struct caller_context_t *ct)
afs_dispose(struct vnode *vp, struct page *p, int fl, int dn, struct cred *cr, caller_context_t *ct)
{
fs_dispose(vp, p, fl, dn, cr,ct);
}
static int
afs_setsecattr(struct vnode *vp, vsecattr_t *vsecattr, int flag, struct cred *creds, struct caller_context_t *ct)
afs_setsecattr(struct vnode *vp, vsecattr_t *vsecattr, int flag, struct cred *creds, caller_context_t *ct)
{
return ENOSYS;
}
static int
afs_getsecattr(struct vnode *vp, vsecattr_t *vsecattr, int flag, struct cred *creds, struct caller_context_t *ct)
afs_getsecattr(struct vnode *vp, vsecattr_t *vsecattr, int flag, struct cred *creds, caller_context_t *ct)
{
return fs_fab_acl(vp, vsecattr, flag, creds,ct);
}