Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-07-07 | make this match protos; millert ok | Theo de Raadt | |
2003-07-07 | function for cpuid instruction. pulled from longrun into generic code. | Ted Unangst | |
ok deraadt mickey | |||
2003-07-07 | I never committed the fix for PR 3296, "Dump prints negative numbers for time" | Todd C. Miller | |
Here it is... | |||
2003-07-07 | Repair last commit, the NUL termination of locname is required | Todd C. Miller | |
for the strlcat() to work since the buffer gets used for each entry in a directory. | |||
2003-07-07 | protos | Theo de Raadt | |
2003-07-06 | protos | Theo de Raadt | |
2003-07-06 | error out instead of silently truncating command-line arguments if they | Anil Madhavapeddy | |
are too long tdeval@ ok | |||
2003-07-06 | proto into scope | Theo de Raadt | |
2003-07-06 | Add -q option from GNU diff | Todd C. Miller | |
2003-07-06 | protos | Theo de Raadt | |
2003-07-06 | Implement -P from GNU diff (like -N but only for files that are missing | Todd C. Miller | |
from dir1). | |||
2003-07-06 | knf (cedric did not do it right) | Theo de Raadt | |
2003-07-06 | bring protos into scope | Theo de Raadt | |
2003-07-06 | proto in scope | Theo de Raadt | |
2003-07-06 | ansi rpcgen | Theo de Raadt | |
2003-07-06 | protos | Theo de Raadt | |
2003-07-06 | protos and ansi | Theo de Raadt | |
2003-07-06 | generate protos for functions | Theo de Raadt | |
2003-07-06 | Add Corega Wireless LAN PCCL-11; Jonathon Fletcher | Todd C. Miller | |
2003-07-06 | regen | Todd C. Miller | |
2003-07-06 | Add Corega Wireless LAN PCCL-11 | Todd C. Miller | |
2003-07-06 | error out on hostspec overflow with a "hostname too long" instead of silently | Anil Madhavapeddy | |
truncating; deraadt@ ok | |||
2003-07-06 | Some 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-06 | various proto, ansi, and knf repair. tested on all architectures that | Theo de Raadt | |
use it. (build may require make cleandir because of .depend balony) | |||
2003-07-06 | no need to redefine strlcpy here; millert@ ok | Anil Madhavapeddy | |
2003-07-06 | convert strn{cpy,cat}->strl{cpy,cat} in directory processing | Anil Madhavapeddy | |
comments and from krw@, tdeval@, tedu@ | |||
2003-07-06 | remove ext2fs_vinit. it wasn't used and is identical to ufs_vinit. | Ted Unangst | |
otto made the diff for me, thanks. | |||
2003-07-06 | reset inode fields if deleted, prevents a panic after deleting a device. | Ted Unangst | |
from netbsd via otto moerbeek | |||
2003-07-06 | trailing spaces | Alexander Yurchenko | |
2003-07-06 | fix off by one. inodes start at 1, so e2fs_icount is a valid inode number. | Ted Unangst | |
from otto moerbeek | |||
2003-07-06 | Use symbolic constants for output format. | Todd C. Miller | |
2003-07-06 | convert a bunch of strn{cpy,cat}->strl{cpy,cat} | Anil Madhavapeddy | |
pjanzen@ ok | |||
2003-07-06 | add a comment that an strncpy should not be converted to an strlcpy; | Anil Madhavapeddy | |
noted by pjanzen@ | |||
2003-07-06 | convert some strncpy->strlcpy | Anil Madhavapeddy | |
pjanzen@ ok | |||
2003-07-05 | fix inaccuracy in obsolete NO_CONFIGURE variable description | Peter Valchev | |
2003-07-05 | ansi | Theo de Raadt | |
2003-07-05 | do not make bad machine@ links | Theo de Raadt | |
2003-07-05 | protos | Theo de Raadt | |
2003-07-05 | sync with netbsd | Nathan Binkert | |
2003-07-05 | sync with NetBSD | Nathan Binkert | |
remove unused global. | |||
2003-07-05 | better indent | Alexander Yurchenko | |
2003-07-05 | Add missing timing value for CMD649 UDMA 5 mode. | Alexander Yurchenko | |
Found by G Onufer <gonufer@yahoo.com>. ok gluk@ | |||
2003-07-05 | backout 1.29; problem reported by Rukh w/ userland ppp. | Jun-ichiro itojun Hagino | |
2003-07-04 | Update based on reality; this should probably be renamed dirent.5 | Todd C. Miller | |
jmc@ OK | |||
2003-07-04 | Fix the types in struct dirent and document d_type (description | Todd C. Miller | |
taken from NetBSD). | |||
2003-07-04 | Accept 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-04 | Kill non-standard -l option as discussed with tedu@ | Todd C. Miller | |
2003-07-04 | Kill 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 clean | Anil Madhavapeddy | |
2003-07-04 | - use sizeof(var) instead of hardcoding length in functions that need it | Anil 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@ |