vos-extra-info-but-disabled-20020115
authorJeffrey Hutzelman <jhutz@cmu.edu>
Wed, 16 Jan 2002 02:16:26 +0000 (02:16 +0000)
committerDerrick Brashear <shadow@dementia.org>
Wed, 16 Jan 2002 02:16:26 +0000 (02:16 +0000)
extra info in vos examine, but disabled until we figure out a way
not to irritate things which parse vos examine output

src/volser/vos.c

index ce9a163..821be0d 100644 (file)
@@ -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));