[BACK]Return to tcfstat.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tcfs

Diff for /src/usr.bin/tcfs/Attic/tcfstat.c between version 1.2 and 1.3

version 1.2, 2000/06/19 20:06:19 version 1.3, 2000/06/19 22:42:29
Line 28 
Line 28 
 stat_main(int argc, char *argv[], char *envp[])  stat_main(int argc, char *argv[], char *envp[])
 {  {
         struct tcfs_status st;          struct tcfs_status st;
         int e,es,ok=0;          int e, es, ok=0;
         char filesystem[MAXPATHLEN];          char filesystem[MAXPATHLEN];
   
         if (argc==3 && !strcmp("-p",argv[1])) {          if (argc == 3 && !strcmp("-p", argv[1])) {
                 strlcpy(filesystem, argv[2], sizeof(filesystem));                  strlcpy(filesystem, argv[2], sizeof(filesystem));
                 ok=1;                  ok = 1;
         }          }
   
         if (argc == 2) {          if (argc == 2) {
                 if (!(es = tcfs_getfspath(argv[1],filesystem))) {                  if (!(es = tcfs_getfspath(argv[1], filesystem))) {
                         fprintf(stderr,"filesystem label not found!\n");                          fprintf(stderr, "filesystem label not found!\n");
                         exit(1);                          exit(1);
                 }                  }
                 ok = 1;                  ok = 1;
Line 52 
Line 52 
   
         e = tcfs_getstatus(filesystem, &st);          e = tcfs_getstatus(filesystem, &st);
         if (e == -1) {          if (e == -1) {
                 fprintf(stderr,"filesystem %s not mounted\n",filesystem);                  fprintf(stderr, "filesystem %s not mounted\n", filesystem);
                 exit(1);                  exit(1);
         }          }
   
         printf("Status: %d; user keys: %d, group keys: %d\n",st.status, st.n_ukey, st.n_gkey);          printf("Status: %d; user keys: %d, group keys: %d\n", st.status, st.n_ukey, st.n_gkey);
         printf("TCFS version: %d, Cipher: %s, keysize: %d, cipher version: %d\n",st.tcfs_version, st.cipher_desc, st.cipher_keysize, st.cipher_version);          printf("TCFS version: %d, Cipher: %s, keysize: %d, cipher version: %d\n", st.tcfs_version, st.cipher_desc, st.cipher_keysize, st.cipher_version);
   
         exit(0);          exit(0);
 }  }

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3