Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-02-17 | Manual cleanup of remaining userland __P use (excluding packages maintained ↵ | Todd C. Miller | |
outside the tree) | |||
2002-02-16 | Part one of userland __P removal. Done with a simple regexp with some minor ↵ | Todd C. Miller | |
hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically. | |||
2001-11-19 | kill more registers | Mike Pechkin | |
millert@ ok | |||
2001-11-17 | o Block signals when running fts_read() so the SIGINFO handler will | Todd C. Miller | |
be sure to have a valid "entry" pointer o In SIGINFO handler, do nothing if "entry" is NULL (Theo) | |||
2001-11-16 | errno safety in signal handler | Theo de Raadt | |
2001-08-22 | expression is optional | Theo de Raadt | |
2001-08-22 | Since we're in pedant mode again, we might as well be thorough. It's | Hugh Graham | |
bad form to assume that the absence of an expression will default to "-print", as one may still encounter versions of find where this is not the case. The examples given are all careful to use an explicit "-print", so follow their lead and mark the expression as a required field even though find will run without one. | |||
2001-08-22 | o Expression is an optional argument to find(1); | Heikki Korpela | |
noticed by Brian Poole <raj@cerias.purdue.edu> o File is not an optional argument o The section name referenced in beginning of the manual page is "operators" so don't confuse people by speaking about "operands" Ok aaron@ | |||
2001-07-12 | first pass at a -Wall cleanup | Theo de Raadt | |
2001-03-14 | formatting error; m@procyon.com | Theo de Raadt | |
2001-02-05 | short names by default; danh@wzrd.com | Theo de Raadt | |
2000-11-10 | - Section shuffling: comply to the section ordering outlined in mdoc(7). | Aaron Campbell | |
- Some .Nm trimming. - .Sh AUTHOR -> .Sh AUTHORS - Other miscellaneous fixes here and there. | |||
2000-07-19 | new strtofflags/fflagstostr | Michael Shalayeff | |
2000-07-10 | Xr chflags(1) | Todd C. Miller | |
2000-07-08 | Add a -flags option similar to -perm but for filke flags (ala | Todd C. Miller | |
chflags). Adapted from FreeBSD. | |||
2000-06-07 | -iname support; karls@inet.no | Theo de Raadt | |
2000-06-07 | option list MUST be sorted; previous commit broke "and"; karls@inet.no | Theo de Raadt | |
2000-03-07 | Various cleanup. | Aaron Campbell | |
2000-03-06 | Add HISTORY sections; from FreeBSD. | Aaron Campbell | |
1999-12-04 | o use nanosecond precision with the -newer option | Todd C. Miller | |
o add -anewer and -cnewer options like GNU find. | |||
1999-10-07 | Some Xr to find(1), locate(1), whatis(1), whereis(1), which(1), etc., as | Aaron Campbell | |
appropriate. | |||
1999-10-04 | If we can't chdir to the root dir in -execdir, just return instead | Todd C. Miller | |
of generating an error. Most times this is just because the target is not a directory. Also close an fd leak introduced in the last commit. | |||
1999-10-04 | Move the chdir/fchdir hack so that it is local to the -execdir | Todd C. Miller | |
function, since that's the only place it needs to be. Doing it for each function caused problems with multiple directories. | |||
1999-10-03 | Do not use FTS_CHDIRROOT flag as it is fatally flawed. Instead, | Todd C. Miller | |
do the chdir ourselves. This fixes a problem with the -execdir option with multiple relative directories. | |||
1999-06-05 | - remove trailing white space | Aaron Campbell | |
- remove arguments from .Os macros - remove arguments from .Nm macros, where appropriate - some more Dq/Sq/Ql insanity - still lots to do in the usr.bin tree... :/ | |||
1999-05-26 | arguments to -perm option are `[-]mode', not `[-mode]'; from NetBSD | Aaron Campbell | |
1999-05-02 | grammar; kwesterback@home.com | Aaron Campbell | |
1999-03-17 | Add -W option so -type W gets a chance to work. | Marc Espie | |
1999-02-24 | -{a,c,m}min are extensions to posix | Theo de Raadt | |
1999-01-04 | Correct ! handling in parens; dave@dtsp.co.nz | Todd C. Miller | |
1998-11-11 | remove redundant .Pp macros | Aaron Campbell | |
1998-10-04 | Take sizeof correct variable in readlink; martin@gbg.netman.se | Todd C. Miller | |
1998-09-26 | usr.bin/ man page fixes, f-m. | Aaron Campbell | |
1998-09-26 | more setmode() leaks -- kill 'em all | Theo de Raadt | |
1998-08-11 | fix "find . !" coredump; thepish@freebsd | Theo de Raadt | |
1998-05-18 | readlink len-1 | Theo de Raadt | |
1997-11-28 | sort table; tejblum@arc.hq.cti.ru | Theo de Raadt | |
1997-11-13 | Add the primaries -mmin, -amin, -cmin to find, similar to the GNU find; wosch | Theo de Raadt | |
1997-11-04 | clarify | Theo de Raadt | |
1997-09-01 | Fix problem with ``find -execdir'' not having the correct initial cwd. | Todd C. Miller | |
Adds a new flag to fts(3). | |||
1997-08-27 | execdir is an extension of course | Theo de Raadt | |
1997-06-30 | Some -Wall cleanliness. | Todd C. Miller | |
1997-06-30 | Fix printf format when listing inode number and #blocks to | Todd C. Miller | |
unsigned and quad respectively to correspond to actual types. Half from NetBSD (jtc). | |||
1997-06-17 | (foo *)NULL -> NULL | kstailey | |
1997-06-17 | Back out last change. Allowing no path to mean "." causes problems | Todd C. Miller | |
with getopts vs. predicates. | |||
1997-06-17 | If no paths are specified, use "." | Todd C. Miller | |
1997-06-17 | Don't trample argv[], we want ps et al to be able to see args. | Todd C. Miller | |
1997-01-15 | getopt(3) returns -1 when out of args, not EOF, whee! | Todd C. Miller | |
1996-12-23 | Add -execdir support. | Todd C. Miller | |
1996-10-24 | Respond to SIGINFO; from PR #42 | Thorsten Lockert | |