Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-06-23 | set set*id bits only if the target did not exist and -p was not used; | Otto Moerbeek | |
from netbsd, prompted by Jesus Sanchez. ok miller@ | |||
2011-06-15 | consistently specify that -f and -i override previous options in each | Ted Unangst | |
option's description. jmc points out this works better than deferring such information to a post-options sentence. | |||
2011-06-15 | the last of -f or -i is the lucky winner. problem noticed by jan stary. | Ted Unangst | |
text copied from mv, as noticed by otto. | |||
2010-09-03 | add an EXIT STATUS section for /bin; | Jason McIntyre | |
2009-10-28 | rcsid[] and sccsid[] and copyright[] are essentially unmaintained (and | Theo de Raadt | |
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-02-08 | bump the posix reference in STANDARDS to IEEE Std 1003.1-2008, with a few | Jason McIntyre | |
updates to follow; | |||
2009-01-04 | replace hardcoded exit values with .Ex macros; | Igor Sobrado | |
ok jmc@ | |||
2007-11-04 | some small nonfunctional tweaks. ok beck millert | Ted Unangst | |
2007-09-22 | warn should return an error message for chmod, not for chown | Igor Sobrado | |
ok millert@ | |||
2007-09-16 | "source" and "target" can be either files or directories; | Igor Sobrado | |
cp(1) and ln(1) must have a synopsis consistent with mkdir(1), mv(1), rmdir(1) and others ok jmc@, millert@, otto@ | |||
2007-07-26 | STDIN_FILENO is better than fileno(stdin); zinovik@cs.karelia.ru | Theo de Raadt | |
2007-05-31 | convert to new .Dd format; | Jason McIntyre | |
2007-05-29 | - consistent STANDARDS blurb | Jason McIntyre | |
- note which options are extensions to POSIX discussed w/ deraadt otto millert | |||
2007-04-06 | when copying regular files, look for blocks of zeroes. when we see them, | Ted Unangst | |
just lseek ahead to create a sparse file. saves disk and time. note this behavior in the man page. ok? deraadt millert | |||
2006-04-25 | various small lint cleanups; ok otto | Theo de Raadt | |
2006-03-17 | Call fts_close(); from NetBSD's Coverity analysis; ok jaredy@ millert@ | Otto Moerbeek | |
2005-11-09 | Handle dir not readable case. Problem noted by chefren. ok hshoexer@ jaredy@ | Otto Moerbeek | |
2004-12-13 | Only warn if we try to cp(1) a socket. Consequently, this makes | Otto Moerbeek | |
mv(1)ing trees containing sockets across filesystems much more smooth. ok millert@ tedu@ fgsch@ pedro@ deraadt@ | |||
2004-12-10 | sort options + sync usage(); | Jason McIntyre | |
standard EXAMPLES; various other tweaks; ok millert@ | |||
2004-12-07 | Document cp(1) does not preserve hard links. With and ok jmc@ and millert@ | Otto Moerbeek | |
2003-11-24 | madvise mmapped memory (not used code) | Michael Shalayeff | |
2003-10-30 | Fix typo in comment; Bruno Rohee | Todd C. Miller | |
2003-08-06 | Remove some double semicolons (hmm, do two semis equal a maxi?). | Todd C. Miller | |
I've skipped the GNU stuff for now. From Patrick Latifi. | |||
2003-07-29 | spacing | Theo de Raadt | |
2003-06-02 | Remove the advertising clause in the UCB license which Berkeley | Todd C. Miller | |
rescinded 22 July 1999. Proofed by myself and Theo. | |||
2003-06-01 | Undo a misguided attempt to fix speling errors from long ago. UCB | Todd C. Miller | |
copyrights say "acknowledgement", not "acknowledgment". You cannot just go changing the text of a license willy-nilly. | |||
2003-05-29 | merge COMPATIBILITY into STANDARDS; | Jason McIntyre | |
2003-05-02 | Zap unused STRIP_TRAILING_SLASH macro. | Nils Nordman | |
Ok millert@. | |||
2003-03-13 | Use the return value of strcpy() to detect ENAMETOOLONG instead of | Todd C. Miller | |
doing an extra strlen; deraadt@ OK | |||
2003-03-13 | lots of sprintf -> snprintf and strcpy -> strlcpy; checked by tedu | Theo de Raadt | |
2003-03-12 | more .Li | Theo de Raadt | |
2003-01-06 | Set directory mode/user/times on the post-order pass, not pre-order. | Todd C. Miller | |
Fixes a problem with "cp -R" (and probably cp -p) with directories that do not grant the owner write permission. However, we need to know whether or not we created the directory ourselves so stash that fact in fts_pointer (treat it as a boolean) but add a macro to access it for readability. This also allows me to remove the duplicated file times setting code for "cp -p". Closes PR 3058; deraadt@ OK | |||
2002-07-04 | ansi | Theo de Raadt | |
2002-06-09 | knf | Todd T. Fries | |
2002-05-30 | typo; moritz@jodeit.org | Theo de Raadt | |
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. | |||
2002-02-11 | Initial patch. | Mike Pechkin | |
When you give command examples in a manual page prefix them with $ command or # command deraadt@ ok | |||
2001-11-05 | kill more registers; | Mike Pechkin | |
millert@ ok | |||
2001-09-06 | o) __progname aria; | Mike Pechkin | |
millert@ ok. | |||
2001-06-25 | explicit braces to avoid ambiguous else | Artur Grabowski | |
2001-06-22 | Avoid printing warnings about things like "is a directory" twice. | Todd C. Miller | |
Found by fgs. | |||
2001-06-06 | In -p mode, set directory times in post-order pass since otherwise the | Todd C. Miller | |
times get squashed when we add files to the dir. Problem found by Christophe.Deroulers@ens.fr, fix by me. | |||
2001-05-11 | Explicit mapping type to mmap. (not used yet) | Artur Grabowski | |
2000-11-10 | - Prefer COMPATIBILITY section after SEE ALSO section. | Aaron Campbell | |
- Insert a missing comma. | |||
2000-11-09 | Change all option list specifications to ".Bl -tag -width Ds". Most man | Aaron Campbell | |
pages just needed their -width parameter tweaked to "Ds", which provides a nice width of 6 constant characters. For consistency more than anything. | |||
2000-10-18 | Add some rudimentary EXAMPLES sections and standardize the way we display | Aaron Campbell | |
existing EXAMPLES sections. | |||
2000-03-21 | Add HISTORY sections; from FreeBSD. Information originally obtained from | Aaron Campbell | |
"A Quarter Centry of UNIX, Peter H. Salus, Page 41". | |||
2000-03-17 | Remove hard sentence breaks. | Aaron Campbell | |
2000-02-20 | setlocale and get rid of unneeded exit() call. millert@ ok | Eric Jackson | |
1999-09-23 | Add EXAMPLES. | Aaron Campbell | |