From b5b9e341bfba3ad57ab9c464362ffbf5509ab1dc Mon Sep 17 00:00:00 2001 From: Dan Hyde Date: Sat, 16 Aug 2008 21:07:57 +0000 Subject: [PATCH] STABLE14-volser-initialize-volume-updatedate-20080816 LICENSE IPL10 FIXES 110943 right now this isn't set until a vnode update happens. technically creating the root directory is an update, so let's set it to now. (cherry picked from commit b080c5d82ba5c7641afeb6836961cacf283e4902) --- src/volser/volprocs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/volser/volprocs.c b/src/volser/volprocs.c index 4a83b01af..c007a61c5 100644 --- a/src/volser/volprocs.c +++ b/src/volser/volprocs.c @@ -452,7 +452,7 @@ VolCreateVolume(struct rx_call *acid, afs_int32 apart, char *aname, return EIO; } V_uniquifier(vp) = 1; - V_creationDate(vp) = V_copyDate(vp); + V_updateDate(vp) = V_creationDate(vp) = V_copyDate(vp); V_inService(vp) = V_blessed(vp) = 1; V_type(vp) = atype; AssignVolumeName(&V_disk(vp), aname, 0); -- 2.39.5