summaryrefslogtreecommitdiff
path: root/usr.bin/diff/diffreg.c
AgeCommit message (Expand)Author
2004-01-07Implement -p option.Otto Moerbeek
2003-11-22Fix diff -q exit value which was broken in last commit.Todd C. Miller
2003-11-21Fix broken assumption that a file must contain differences if files_differ()Todd C. Miller
2003-11-10Din't print the "No newline at end of file" to inline (ie: to stdout)Todd C. Miller
2003-10-28prototype declared static, but function was not. add static to function.Anil Madhavapeddy
2003-09-07correct ascii file test. ok deraadt@ pb@Ted Unangst
2003-08-13Based on what otto@ said on icb. The expensive thing in diff isTodd C. Miller
2003-08-08Guess the number of lines in a file and use that number for initialOtto Moerbeek
2003-07-31- Change the hash function to a simple multiplicative one. The oldOtto Moerbeek
2003-07-31o correct exit code when comparing stdin and stdin (a noop)Todd C. Miller
2003-07-29cleanTheo de Raadt
2003-07-27We need to initialize clen to 0 each time through diffreg() forTodd C. Miller
2003-07-27- Use a heuristic to bound memory and cpu usage, at the cost ofOtto Moerbeek
2003-07-23better ascii test for fewer false negatives. ok millert@Ted Unangst
2003-07-22Implement the -L and -T options from GNU diff.Todd C. Miller
2003-07-22Historically, when comparing two directories in -e mode, BSD diffTodd C. Miller
2003-07-22Don't print lines consisting solely of a dot ('.') in -e mode sinceTodd C. Miller
2003-07-21a little KNFHenning Brauer
2003-07-21POSIX-compliant output when there are two paths w/ the same name butTodd C. Miller
2003-07-21Expand change records array as needed; passes Otto's new regression test.Todd C. Miller
2003-07-17cc -O2 -pipe -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1 -DDIRENT=1 -DDYN_ALLOC -c ...Todd C. Miller
2003-07-16Deal with files that lack a final newline before EOF (you naughtyTodd C. Miller
2003-07-15Fix line ranges for unidiffs. Problem noted by otto@Todd C. Miller
2003-07-09Unlink temp file as soon as it is opened and return a FILE * forTodd C. Miller
2003-07-09Re-implement -l flag; diff -l now works correctly in non-directoryTodd C. Miller
2003-07-08fix pasto in last commitTodd C. Miller
2003-07-08o Avoid a temp file if using stdin and stdin is redirected from a regular fileTodd C. Miller
2003-07-06Add -q option from GNU diffTodd C. Miller
2003-07-06Some fairly major changes:Todd C. Miller
2003-07-04Kill diff -h, we don't use or want diffh. Discussed w/ tedu@Todd C. Miller
2003-07-04Some cosmetic fixes:Todd C. Miller
2003-07-02Treat /dev/null specially; there is no need to make a temp file for it.Todd C. Miller
2003-06-27-a to force ascii compare. ok millertTed Unangst
2003-06-26Remove cruft; We don't have the -I, -1 or -2 options anymore so we don'tTodd C. Miller
2003-06-26Fix temp file handling.Todd C. Miller
2003-06-26Fix temp file handling and deal with the case where we might need 2 temp files.Todd C. Miller
2003-06-26off by one in size calculationVincent Labrecque
2003-06-25fix unified diff output. ok millert@Ted Unangst
2003-06-25Add unidiff support and try to pretty up usage() a bitTodd C. Miller
2003-06-25o use S_ISDIR instead of doing it by handTodd C. Miller
2003-06-25o use getopt()Todd C. Miller
2003-06-25remove silly signal catcher, and just use done. ok deraadt@Ted Unangst
2003-06-25oopsTheo de Raadt
2003-06-25use SEEK_SET with fseek()Theo de Raadt
2003-06-25more knfTheo de Raadt
2003-06-25index -> strrchrTheo de Raadt
2003-06-25knfTheo de Raadt
2003-06-25remove unused variableTed Unangst
2003-06-25-Wstrict-prototypesTed Unangst
2003-06-25avoid signed issues; tedu okTheo de Raadt