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

Diff for /src/usr.bin/systat/if.c between version 1.10 and 1.11

version 1.10, 2007/04/14 23:07:44 version 1.11, 2007/09/05 20:31:34
Line 31 
Line 31 
 static  enum state { BOOT, TIME, RUN } state = TIME;  static  enum state { BOOT, TIME, RUN } state = TIME;
   
 struct ifcount {  struct ifcount {
         u_long          ifc_ib;                 /* input bytes */          u_int64_t       ifc_ib;                 /* input bytes */
         u_long          ifc_ip;                 /* input packets */          u_int64_t       ifc_ip;                 /* input packets */
         u_long          ifc_ie;                 /* input errors */          u_int64_t       ifc_ie;                 /* input errors */
         u_long          ifc_ob;                 /* output bytes */          u_int64_t       ifc_ob;                 /* output bytes */
         u_long          ifc_op;                 /* output packets */          u_int64_t       ifc_op;                 /* output packets */
         u_long          ifc_oe;                 /* output errors */          u_int64_t       ifc_oe;                 /* output errors */
         u_long          ifc_co;                 /* collisions */          u_int64_t       ifc_co;                 /* collisions */
         int             ifc_flags;              /* up / down */          int             ifc_flags;              /* up / down */
         int             ifc_state;              /* link state */          int             ifc_state;              /* link state */
 } sum;  } sum;
Line 198 
Line 198 
         mvwaddstr(wnd, 1, INSET+74, "Colls");          mvwaddstr(wnd, 1, INSET+74, "Colls");
 }  }
   
 #define FMT "%-8.8s %2s%2s  %10lu %8lu %6lu   %10lu %8lu %6lu   %6lu "  #define FMT "%-8.8s %2s%2s  %10llu %8llu %6llu   %10llu %8llu %6llu   %6llu "
   
 const char *  const char *
 showlinkstate(int state)  showlinkstate(int state)

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11