From: Jeffrey Hutzelman Date: Wed, 16 Jan 2002 02:16:26 +0000 (+0000) Subject: vos-extra-info-but-disabled-20020115 X-Git-Tag: openafs-devel-1_3_0~73 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=53bbb7b3863770a178ec5e7ecd8b34257b423a8a;p=packages%2Fo%2Fopenafs.git vos-extra-info-but-disabled-20020115 extra info in vos examine, but disabled until we figure out a way not to irritate things which parse vos examine output --- diff --git a/src/volser/vos.c b/src/volser/vos.c index ce9a163e6..821be0d02 100644 --- a/src/volser/vos.c +++ b/src/volser/vos.c @@ -485,6 +485,18 @@ int fast,longlist, disp; fprintf(STDOUT," MaxQuota %10d K \n",pntr->maxquota); fprintf(STDOUT," Creation %s", ctime((time_t *)&pntr->creationDate)); +#if 0 + fprintf(STDOUT," Copy %s", + ctime((time_t *)&pntr->copyDate)); + if(!pntr->backupDate) + fprintf(STDOUT," Backup Never\n"); + else + fprintf(STDOUT," Backup %s", + ctime((time_t *)&pntr->backupDate)); + if (pntr->accessDate) + fprintf(STDOUT," Last Access %s", + ctime((time_t *)&pntr->accessDate)); +#endif if(pntr->updateDate < pntr->creationDate) fprintf(STDOUT," Last Update %s", ctime((time_t *)&pntr->creationDate)); @@ -622,6 +634,18 @@ static void XDisplayFormat(a_xInfoP, a_servID, a_partID, a_totalOKP, a_xInfoP->maxquota); fprintf(STDOUT, " Creation %s", ctime((time_t *)&a_xInfoP->creationDate)); +#if 0 + fprintf(STDOUT," Copy %s", + ctime((time_t *)&a_xInfoP->copyDate)); + if(!a_xInfoP->backupDate) + fprintf(STDOUT," Backup Never\n"); + else + fprintf(STDOUT," Backup %s", + ctime((time_t *)&a_xInfoP->backupDate)); + if (a_xInfoP->accessDate) + fprintf(STDOUT," Last Access %s", + ctime((time_t *)&a_xInfoP->accessDate)); +#endif if (a_xInfoP->updateDate < a_xInfoP->creationDate) fprintf(STDOUT, " Last Update %s", ctime((time_t *)&a_xInfoP->creationDate));