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

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

Diff for /src/sbin/mount/mount.c between version 1.45 and 1.46

version 1.45, 1998/12/01 23:20:43 version 1.46, 1999/11/15 19:20:58
Line 105  static struct opt {
Line 105  static struct opt {
         { MNT_SYMPERM,          0,      "symperm" },          { MNT_SYMPERM,          0,      "symperm" },
         { MNT_SYNCHRONOUS,      0,      "synchronous" },          { MNT_SYNCHRONOUS,      0,      "synchronous" },
         { MNT_UNION,            0,      "union" },          { MNT_UNION,            0,      "union" },
           { MNT_SOFTDEP,          0,      "soft dependencies" },
         { 0 }          { 0 }
 };  };
   
Line 479  prmount(sfp)
Line 480  prmount(sfp)
                 else                  else
                         (void)printf("%d", sfp->f_owner);                          (void)printf("%d", sfp->f_owner);
         }          }
         (void)printf(f ? ")\n" : "\n");          if (verbose)
                   (void)printf("%swrites: sync %ld async %ld)\n",
                       !f++ ? " (" : ", ", sfp->f_syncwrites, sfp->f_asyncwrites);
           else
                   (void)printf(")\n");
 }  }
   
 struct statfs *  struct statfs *

Legend:
Removed from v.1.45  
changed lines
  Added in v.1.46

CVSweb <webmaster@jp.NetBSD.org>