[BACK]Return to pstat.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / usr.sbin / pstat

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/usr.sbin/pstat/pstat.c between version 1.25 and 1.26

version 1.25, 1996/06/03 19:00:23 version 1.26, 1996/10/23 22:19:23
Line 532  mount_print(mp)
Line 532  mount_print(mp)
                         flags &= ~MNT_NODEV;                          flags &= ~MNT_NODEV;
                         comma = ",";                          comma = ",";
                 }                  }
                 if (flags & MNT_EXPORTED) {                  if (flags & MNT_UNION) {
                         (void)printf("%sexport", comma);                          (void)printf("%sunion", comma);
                         flags &= ~MNT_EXPORTED;                          flags &= ~MNT_UNION;
                           comma = ",";
                   }
                   if (flags & MNT_ASYNC) {
                           (void)printf("%sasync", comma);
                           flags &= ~MNT_ASYNC;
                         comma = ",";                          comma = ",";
                 }                  }
                 if (flags & MNT_EXRDONLY) {                  if (flags & MNT_EXRDONLY) {
Line 542  mount_print(mp)
Line 547  mount_print(mp)
                         flags &= ~MNT_EXRDONLY;                          flags &= ~MNT_EXRDONLY;
                         comma = ",";                          comma = ",";
                 }                  }
                   if (flags & MNT_EXPORTED) {
                           (void)printf("%sexport", comma);
                           flags &= ~MNT_EXPORTED;
                           comma = ",";
                   }
                   if (flags & MNT_DEFEXPORTED) {
                           (void)printf("%sdefdexported", comma);
                           flags &= ~MNT_DEFEXPORTED;
                           comma = ",";
                   }
                   if (flags & MNT_EXPORTANON) {
                           (void)printf("%sexportanon", comma);
                           flags &= ~MNT_EXPORTANON;
                           comma = ",";
                   }
                   if (flags & MNT_EXKERB) {
                           (void)printf("%sexkerb", comma);
                           flags &= ~MNT_EXKERB;
                           comma = ",";
                   }
                 if (flags & MNT_LOCAL) {                  if (flags & MNT_LOCAL) {
                         (void)printf("%slocal", comma);                          (void)printf("%slocal", comma);
                         flags &= ~MNT_LOCAL;                          flags &= ~MNT_LOCAL;

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26

CVSweb <webmaster@jp.NetBSD.org>