The osi_PostPopulateVCache() routine in the OpenBSD version of
osi_vcache.c tries to use the non-existent variable "vc" instead
of "avc". This fixes it.
Change-Id: Idac09739d36e253518fbdbd600ab43c9ea87da3a
Reviewed-on: http://gerrit.openafs.org/3418
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Derrick Brashear <shadow@dementia.org>
void
osi_PostPopulateVCache(struct vcache *avc) {
AFSTOV(avc)->v_mount = afs_globalVFS;
- vSetType(vc, VREG);
+ vSetType(avc, VREG);
}