From 57d8e4544713170dc31afede27a1d6e2f94f5b95 Mon Sep 17 00:00:00 2001 From: Derrick Brashear Date: Fri, 5 Feb 2010 19:54:22 -0500 Subject: [PATCH] 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 --- src/afs/afs_fetchstore.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/afs/afs_fetchstore.c b/src/afs/afs_fetchstore.c index dd9c2b80fa..21222fcfcd 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 };