From: Derrick Brashear Date: Sat, 6 Feb 2010 00:54:22 +0000 (-0500) Subject: set storeproc for non-linux X-Git-Tag: openafs-devel-1_5_72~40 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=57d8e454;p=packages%2Fo%2Fopenafs.git 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 Tested-by: Derrick Brashear --- diff --git a/src/afs/afs_fetchstore.c b/src/afs/afs_fetchstore.c index dd9c2b80f..21222fcfc 100644 --- a/src/afs/afs_fetchstore.c +++ b/src/afs/afs_fetchstore.c @@ -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 };