From: Andrew Deason Date: Tue, 6 Jul 2010 17:36:27 +0000 (-0500) Subject: vos status: actually show created time X-Git-Tag: openafs-devel-1_5_76~94 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=36af430c29bdbfc1b4b5c1ad7568cbffab04899f;p=packages%2Fo%2Fopenafs.git vos status: actually show created time The 'created' field in 'vos status' output was being reported as something else. Make 'vos status' actually report the time the transaction was created in that field. Change-Id: Ib890256f4b9f67cf0a37910dc3b3585eafdba4fc Reviewed-on: http://gerrit.openafs.org/2336 Reviewed-by: Jeffrey Altman Reviewed-by: Derrick Brashear Tested-by: Derrick Brashear --- diff --git a/src/volser/vos.c b/src/volser/vos.c index bf55a1ca5..094ffc14b 100644 --- a/src/volser/vos.c +++ b/src/volser/vos.c @@ -4071,7 +4071,7 @@ VolserStatus(register struct cmd_syndesc *as, void *arock) for (i = 0; i < count; i++) { /*print out the relevant info */ fprintf(STDOUT, "--------------------------------------\n"); - t = pntr->time; + t = pntr->creationTime; fprintf(STDOUT, "transaction: %lu created: %s", (unsigned long)pntr->tid, ctime(&t)); if (pntr->returnCode) {