set storeproc for non-linux

forgot to push this with 0683c04a

Change-Id: Ifce009ed8b2877befc364b831a185126bf692ede
Reviewed-on: http://gerrit.openafs.org/1247
Reviewed-by: Derrick Brashear <shadow@dementia.org>
Tested-by: Derrick Brashear <shadow@dementia.org>
This commit is contained in:
Derrick Brashear 2010-02-05 19:54:22 -05:00 committed by Derrick Brashear
parent b80efa48f4
commit 57d8e45447

View File

@ -273,7 +273,8 @@ struct storeOps rxfs_storeUfsOps = {
rxfs_storeStatus,
rxfs_storePadd,
rxfs_storeClose,
rxfs_storeDestroy
rxfs_storeDestroy,
afs_GenericStoreProc
#else
.prepare = rxfs_storeUfsPrepare,
.read = rxfs_storeUfsRead,
@ -284,6 +285,8 @@ struct storeOps rxfs_storeUfsOps = {
.destroy = rxfs_storeDestroy,
#ifdef AFS_LINUX26_ENV
.storeproc = afs_linux_storeproc
#else
.storeproc = afs_GenericStoreProc
#endif
#endif
};