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

Diff for /src/usr.bin/quota/quota.c between version 1.32 and 1.33

version 1.32, 2013/11/26 13:19:07 version 1.33, 2015/01/16 06:40:10
Line 35 
Line 35 
 /*  /*
  * Disk quota reporting program.   * Disk quota reporting program.
  */   */
 #include <sys/param.h>  #include <sys/param.h>  /* DEV_BSIZE */
 #include <sys/types.h>  #include <sys/types.h>
 #include <sys/file.h>  #include <sys/file.h>
 #include <sys/stat.h>  #include <sys/stat.h>
Line 67 
Line 67 
         struct  quotause *next;          struct  quotause *next;
         long    flags;          long    flags;
         struct  dqblk dqblk;          struct  dqblk dqblk;
         char    fsname[MAXPATHLEN + 1];          char    fsname[PATH_MAX + 1];
 };  };
 #define FOUND   0x01  #define FOUND   0x01
   

Legend:
Removed from v.1.32  
changed lines
  Added in v.1.33