summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-07-07make this match protos; millert okTheo de Raadt
2003-07-07function for cpuid instruction. pulled from longrun into generic code.Ted Unangst
ok deraadt mickey
2003-07-07I never committed the fix for PR 3296, "Dump prints negative numbers for time"Todd C. Miller
Here it is...
2003-07-07Repair last commit, the NUL termination of locname is requiredTodd C. Miller
for the strlcat() to work since the buffer gets used for each entry in a directory.
2003-07-07protosTheo de Raadt
2003-07-06protosTheo de Raadt
2003-07-06error out instead of silently truncating command-line arguments if theyAnil Madhavapeddy
are too long tdeval@ ok
2003-07-06proto into scopeTheo de Raadt
2003-07-06Add -q option from GNU diffTodd C. Miller
2003-07-06protosTheo de Raadt
2003-07-06Implement -P from GNU diff (like -N but only for files that are missingTodd C. Miller
from dir1).
2003-07-06knf (cedric did not do it right)Theo de Raadt
2003-07-06bring protos into scopeTheo de Raadt
2003-07-06proto in scopeTheo de Raadt
2003-07-06ansi rpcgenTheo de Raadt
2003-07-06protosTheo de Raadt
2003-07-06protos and ansiTheo de Raadt
2003-07-06generate protos for functionsTheo de Raadt
2003-07-06Add Corega Wireless LAN PCCL-11; Jonathon FletcherTodd C. Miller
2003-07-06regenTodd C. Miller
2003-07-06Add Corega Wireless LAN PCCL-11Todd C. Miller
2003-07-06error out on hostspec overflow with a "hostname too long" instead of silentlyAnil Madhavapeddy
truncating; deraadt@ ok
2003-07-06Some fairly major changes:Todd C. Miller
o -N is implemented o -X is implemented o -x is implemented o diff.c has been rewritten and GNU long options are now supported o diffdir.c has been rewritten + no longer does fork + exec of /usr/bin/diff + can be called recursively (and will be for -r) o diff.h + don't include any .h files here any more, do it in the .c files + no Bell Labs code in this, gets a UCB copyright (the 32v sources only have a diff.c and there is nothing in common). o diffreg.c + most all remaining globals are now private to diffreg.c + files are only opened once + dynamically allocated objects are either freed or realloced + added missing UCB copyright (there were lots of UCB changes) + print correct thing when -s is specified OK deraadt@
2003-07-06various proto, ansi, and knf repair. tested on all architectures thatTheo de Raadt
use it. (build may require make cleandir because of .depend balony)
2003-07-06no need to redefine strlcpy here; millert@ okAnil Madhavapeddy
2003-07-06convert strn{cpy,cat}->strl{cpy,cat} in directory processingAnil Madhavapeddy
comments and from krw@, tdeval@, tedu@
2003-07-06remove ext2fs_vinit. it wasn't used and is identical to ufs_vinit.Ted Unangst
otto made the diff for me, thanks.
2003-07-06reset inode fields if deleted, prevents a panic after deleting a device.Ted Unangst
from netbsd via otto moerbeek
2003-07-06trailing spacesAlexander Yurchenko
2003-07-06fix off by one. inodes start at 1, so e2fs_icount is a valid inode number.Ted Unangst
from otto moerbeek
2003-07-06Use symbolic constants for output format.Todd C. Miller
2003-07-06convert a bunch of strn{cpy,cat}->strl{cpy,cat}Anil Madhavapeddy
pjanzen@ ok
2003-07-06add a comment that an strncpy should not be converted to an strlcpy;Anil Madhavapeddy
noted by pjanzen@
2003-07-06convert some strncpy->strlcpyAnil Madhavapeddy
pjanzen@ ok
2003-07-05fix inaccuracy in obsolete NO_CONFIGURE variable descriptionPeter Valchev
2003-07-05ansiTheo de Raadt
2003-07-05do not make bad machine@ linksTheo de Raadt
2003-07-05protosTheo de Raadt
2003-07-05sync with netbsdNathan Binkert
2003-07-05sync with NetBSDNathan Binkert
remove unused global.
2003-07-05better indentAlexander Yurchenko
2003-07-05Add missing timing value for CMD649 UDMA 5 mode.Alexander Yurchenko
Found by G Onufer <gonufer@yahoo.com>. ok gluk@
2003-07-05backout 1.29; problem reported by Rukh w/ userland ppp.Jun-ichiro itojun Hagino
2003-07-04Update based on reality; this should probably be renamed dirent.5Todd C. Miller
jmc@ OK
2003-07-04Fix the types in struct dirent and document d_type (descriptionTodd C. Miller
taken from NetBSD).
2003-07-04Accept but ignore -h for backwards compat like GNU diff does.Todd C. Miller
Pointed out by espie@. Also remove other references to -h mode.
2003-07-04Kill non-standard -l option as discussed with tedu@Todd C. Miller
2003-07-04Kill diff -h, we don't use or want diffh. Discussed w/ tedu@Todd C. Miller
2003-07-04'static const char rcsid[]' to make it -Wall cleanAnil Madhavapeddy
2003-07-04- use sizeof(var) instead of hardcoding length in functions that need itAnil Madhavapeddy
- krw@ rewrote make_preserve_name() to get rid of some hard to read string code - some trivial strn{cpy,cat} - > strl{cpy,cat} conversions ok krw@