From 2ca7bc4dbc7a314f49f51e2ef2a4f50ae80f3d74 Mon Sep 17 00:00:00 2001 From: Dan Hyde Date: Sat, 16 Aug 2008 21:07:45 +0000 Subject: [PATCH] DEVEL15-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 279af06d0..bad4bc56f 100644 --- a/src/volser/volprocs.c +++ b/src/volser/volprocs.c @@ -446,7 +446,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