| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2019-06-28 | When system calls indicate an error they return -1, not some arbitrary | 1 | -3/+3 | ||
| value < 0. errno is only updated in this case. Change all (most?) callers of syscalls to follow this better, and let's see if this strictness helps us in the future. | |||||
| 2016-08-14 | Another %qd -> %lld + (long long) for off_t's. | 1 | -3/+3 | ||
| 2016-08-10 | fix HISTORY; from Sevan Janiyan <venture37 at geeklan dot co dot uk>; | 1 | -3/+3 | ||
| checked with http://minnie.tuhs.org/cgi-bin/utree.pl?file=V1/man/man1 | |||||
| 2016-03-14 | replace __progname with getprogname(3) | 1 | -4/+2 | ||
| from Michal Mazurek, ok tb@ | |||||
| 2016-03-07 | simplify print formatting logic, replace exit() in main() with return | 1 | -6/+3 | ||
| from Michal Mazurek, ok tb@ | |||||
| 2016-03-01 | tidy up function declarations and definitions | 1 | -25/+25 | ||
| from Michal Mazurek, ok tb@ | |||||
| 2016-03-01 | remove unneeded includes | 2 | -6/+2 | ||
| from Michal Mazurek, ok tb@ | |||||
| 2016-02-08 | remove needless headers | 3 | -8/+4 | ||
| ok tb@, from Michal Mazurek | |||||
| 2015-11-27 | Use strlcpy to copy strings in struct mount, not memmove. Avoids | 2 | -8/+8 | ||
| reading past the end of a buffer. Problem found and OK jsg@ | |||||
| 2015-10-09 | Change all tame callers to namechange to pledge(2). | 1 | -3/+3 | ||
| 2015-10-04 | df is a tame "stdio rpath" program, the rpath due to getfsstat and statfs. | 1 | -1/+4 | ||
| those two system calls were put into the "rpath" catagory because they expose pathname information. | |||||
| 2015-03-01 | Avoid SIGFPE when parsing an invalid ext2fs through a raw device operation. | 1 | -3/+4 | ||
| ok millert | |||||
| 2015-01-20 | Adjust <sys/param.h> comments regarding use of use of MAXFRAG, or | 1 | -2/+2 | ||
| delete <sys/param.h> if now possible ok guenther | |||||
| 2015-01-16 | Replace <sys/param.h> with <limits.h> and other less dirty headers where | 3 | -6/+5 | ||
| possible. Annotate <sys/param.h> lines with their current reasons. Switch to PATH_MAX, NGROUPS_MAX, HOST_NAME_MAX+1, LOGIN_NAME_MAX, etc. Change MIN() and MAX() to local definitions of MINIMUM() and MAXIMUM() where sensible to avoid pulling in the pollution. These are the files confirmed through binary verification. ok guenther, millert, doug (helped with the verification protocol) | |||||
| 2014-05-20 | As suggested by guenther@ and millert@, replace seek+[read|write] with | 1 | -3/+2 | ||
| p[read|write]. Makes the code much clearer by eliminating extra error checking and verbiage. No intentional functional change. Tweaks by and ok guenther@ | |||||
| 2014-05-16 | Make the df calculations of available space the same as that done in | 1 | -6/+5 | ||
| ffs_statfs(). In 1998, with /usr/src/sys/ufs/ffs/ffs_vfsops.c r1.16, mickey@ improved the calculation of available blocks in ffs_statfs(). Yesterday guenther@ noticed that this fix had not been applied to the same calculation being done by df(8) when run against raw devices. Which meant different values were displayed depending on which device/file system you gave to df. ok otto@ | |||||
| 2014-03-17 | word tweak from schwarze; | 1 | -3/+3 | ||
| 2014-02-13 | BLOCKSIZE is an extension; | 1 | -3/+6 | ||
| 2014-02-04 | various minor fixes; ok sobrado | 1 | -9/+10 | ||
| 2010-09-03 | add an EXIT STATUS section for /bin; | 1 | -4/+4 | ||
| 2009-10-27 | rcsid[] and sccsid[] and copyright[] are essentially unmaintained (and | 2 | -22/+2 | ||
| unmaintainable). these days, people use source. these id's do not provide any benefit, and do hurt the small install media (the 33,000 line diff is essentially mechanical) ok with the idea millert, ok dms | |||||
| 2009-06-04 | - sync the descriptions of -h and -k | 1 | -2/+10 | ||
| - note that the last -h or -k specified takes precedence the latter part based on a diff from Daniel Dickman, with text from ls.1 ok otto millert | |||||
| 2009-02-08 | bump the posix reference in STANDARDS to IEEE Std 1003.1-2008, with a few | 1 | -4/+4 | ||
| updates to follow; | |||||
| 2008-03-16 | actually print the now available large numbers | 1 | -12/+12 | ||
| 2007-12-22 | fix df posix mode bug | 1 | -3/+3 | ||
| from otto@ prompted by otto@ who is aftk for now | |||||
| 2007-09-02 | use calloc() to avoid malloc(n * m) overflows; checked by djm canacar jsg | 1 | -3/+3 | ||
| 2007-05-31 | convert to new .Dd format; | 1 | -2/+2 | ||
| 2007-05-29 | note some flags which differ in behaviour from posix; | 1 | -1/+6 | ||
| suggested by millert | |||||
| 2007-05-29 | - consistent STANDARDS blurb | 1 | -2/+2 | ||
| - note which options are extensions to POSIX discussed w/ deraadt otto millert | |||||
| 2007-04-30 | ffs2 support for reading df data directly from device; ok millert@ pedro@ | 1 | -12/+24 | ||
| 2007-03-19 | Add FFS2 fields to the superblock, change file system tools to keep | 1 | -7/+7 | ||
| accessing FFS1 fields, okay art@, quite some testing by ckuethe@, simon@ and thib@, thanks. | |||||
| 2007-02-03 | statfs(2) and fstatfs(2) are one and the same, so don;t add both to SEE ALSO; | 1 | -2/+1 | ||
| 2006-10-29 | like -i, -h is incompatible with -P; suggested by jmc@; ok ray@ | 1 | -4/+4 | ||
| 2006-10-21 | note that -hP and -iP are illegal; ok otto | 1 | -1/+7 | ||
| 2006-10-18 | - update reference to posix to latest version | 1 | -2/+6 | ||
| - note that the flags [-hiln] are extensions | |||||
| 2006-10-18 | - standard EXAMPLES section | 1 | -14/+5 | ||
| - use .Ex instead of an entire DIAGNOSTICS section | |||||
| 2006-09-21 | Remove LFS-related code, no binary change | 2 | -102/+2 | ||
| 2006-05-11 | handle malloc failure; jan.niemann@tu-bs.de | 1 | -2/+4 | ||
| 2005-02-20 | Better handling of large filesystems, okay henning@ and millert@, with | 1 | -5/+5 | ||
| input from martin@ and miod@. | |||||
| 2005-01-28 | widen the avail/used columns by one space to accomodate for >100g filesystems. the total is already wide enough due to the header length; dhartmei@ ok | 1 | -7/+7 | ||
| 2004-11-18 | Sync usage with man page; Paul de Weerd | 1 | -3/+3 | ||
| 2004-11-17 | Document exit code, pointed out by Paul de Weerd. | 1 | -1/+12 | ||
| 2004-10-15 | Don't print header if we didn't print any usage lines. Noticed and | 1 | -15/+17 | ||
| tested by robert@ | |||||
| 2004-09-14 | fd leak (and who said lint never finds real bugs) | 1 | -9/+7 | ||
| 2004-09-14 | remove unused variable | 1 | -6/+4 | ||
| 2004-09-14 | do not alias unions between files (lint hates it) | 2 | -4/+4 | ||
| 2004-01-05 | wording improvemements; | 1 | -3/+3 | ||
| started by Jared Yanovich and tempered by otto, tom, millert and myself; ok millert@ | |||||
| 2003-12-08 | -h also overrides BLOCKSIZE; | 1 | -2/+4 | ||
| from perry@netbsd | |||||
| 2003-07-29 | spacing | 1 | -4/+4 | ||
| 2003-07-02 | missing protos | 1 | -2/+4 | ||
