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

Diff for /src/usr.bin/lastcomm/lastcomm.c between version 1.5 and 1.6

version 1.5, 1997/03/03 03:25:10 version 1.6, 1997/06/02 02:39:42
Line 125 
Line 125 
                 if (fread(&ab, sizeof(struct acct), 1, fp) != 1)                  if (fread(&ab, sizeof(struct acct), 1, fp) != 1)
                         err(1, "%s", acctfile);                          err(1, "%s", acctfile);
   
                 if (fseek(fp, 2 * -(long)sizeof(struct acct), SEEK_CUR) == -1)  
                         err(1, "%s", acctfile);  
   
                 size -= sizeof(struct acct);  
   
                 if (ab.ac_comm[0] == '\0') {                  if (ab.ac_comm[0] == '\0') {
                         ab.ac_comm[0] = '?';                          ab.ac_comm[0] = '?';
                         ab.ac_comm[1] = '\0';                          ab.ac_comm[1] = '\0';
Line 138 
Line 133 
                             p < &ab.ac_comm[fldsiz(acct, ac_comm)] && *p; ++p)                              p < &ab.ac_comm[fldsiz(acct, ac_comm)] && *p; ++p)
                                 if (!isprint(*p))                                  if (!isprint(*p))
                                         *p = '?';                                          *p = '?';
                 if (*argv && !requested(argv, &ab))                  if (!*argv || requested(argv, &ab))
                         continue;                  {
                           t = expand(ab.ac_utime) + expand(ab.ac_stime);
                           (void)printf("%-*.*s %-7s %-*.*s %-*.*s %6.2f secs %.16s",
                                   fldsiz(acct, ac_comm), fldsiz(acct, ac_comm),
                                   ab.ac_comm, flagbits(ab.ac_flag), UT_NAMESIZE,
                                   UT_NAMESIZE, user_from_uid(ab.ac_uid, 0),
                                   UT_LINESIZE, UT_LINESIZE, getdev(ab.ac_tty),
                                   t / (double)AHZ, ctime(&ab.ac_btime));
                           delta = expand(ab.ac_etime) / (double)AHZ;
                           printf(" (%1.0lf:%02.0lf:%05.2lf)\n",
                                   delta / SECSPERHOUR,
                                   fmod(delta, SECSPERHOUR) / SECSPERMIN,
                                   fmod(delta, SECSPERMIN));
                   }
   
                 t = expand(ab.ac_utime) + expand(ab.ac_stime);  
                 (void)printf("%-*.*s %-7s %-*.*s %-*.*s %6.2f secs %.16s",  
                     fldsiz(acct, ac_comm), fldsiz(acct, ac_comm), ab.ac_comm,  
                     flagbits(ab.ac_flag), UT_NAMESIZE, UT_NAMESIZE,  
                     user_from_uid(ab.ac_uid, 0), UT_LINESIZE, UT_LINESIZE,  
                     getdev(ab.ac_tty), t / (double)AHZ, ctime(&ab.ac_btime));  
                 delta = expand(ab.ac_etime) / (double)AHZ;  
                 printf(" (%1.0lf:%02.0lf:%05.2lf)\n",  
                     delta / SECSPERHOUR,  
                     fmod(delta, SECSPERHOUR) / SECSPERMIN,  
                     fmod(delta, SECSPERMIN));  
   
                 if (size == 0)                  if (size == 0)
                         break;                          break;
                   /* seek to previous entry */
                   if (fseek(fp, 2 * -(long)sizeof(struct acct), SEEK_CUR) == -1)
                           err(1, "%s", acctfile);
                   size -= sizeof(struct acct);
         }          }
         exit(0);          exit(0);
 }  }

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6