summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2003-06-27missing full stop and a .Pp;Jason McIntyre
2003-06-27- replace .Ql with .Sq; this was also causing a problem with postscriptJason McIntyre
- escape ampersand - missing full stop fixes from wiz@netbsd
2003-06-27-a to force ascii compare. ok millertTed Unangst
2003-06-27Fix bug in put_int32() on big endian cpus; deraadt@ OKTodd C. Miller
2003-06-27Fix -t mode; it needs to set decomp=1 tooTodd C. Miller
2003-06-27kill a warning: include <string.h>David Krause
ok tedu@
2003-06-26protosVincent Labrecque
ok deraadt
2003-06-26Remove cruft; We don't have the -I, -1 or -2 options anymore so we don'tTodd C. Miller
need the associated scaffolding. tedu@ OK
2003-06-26more proto fixesTheo de Raadt
2003-06-26change awk script to generate ansi codeTheo de Raadt
2003-06-26minimal protosTheo de Raadt
2003-06-26protosTheo de Raadt
2003-06-26ansi and knf and protosTheo de Raadt
2003-06-26Fix -r flag that was broken during getopt() conversion--whoops.Todd C. Miller
2003-06-26do not dump core for 'ssh -o proxycommand host'; ok deraadt@Markus Friedl
2003-06-26Fix temp file handling.Todd C. Miller
o honor TMPDIR environment variable as per man page o need 2 temp files if both file1 and file2 are devices o add error() and errorx() which cleanup temp file and then call err() and errx() respectively. OK tedu@
2003-06-264.4 lint w/ caldera license nowMichael Shalayeff
2003-06-26caldera-licensed docMichael Shalayeff
2003-06-26caldera-licensed docMichael Shalayeff
2003-06-26oopsMichael Shalayeff
2003-06-26calder-licensed docMichael Shalayeff
2003-06-26print usage in one printf (instead of four)Michael Shalayeff
2003-06-26another proto repairTheo de Raadt
2003-06-26bring protypes into scope. this requires some quirky handling, but inTheo de Raadt
the end everything is much clearer; ok tedu (itojun might like to see how ifconfig looks after this)
2003-06-26pretty code that prints usageTheo de Raadt
2003-06-26Update with unidiff info and make FILES section fit reality.Todd C. Miller
With input from jmc@
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
ok tedu
2003-06-26put all the flags and globals in diff.c, and declare externs in diff.hTed Unangst
ok millert@
2003-06-26protosTheo de Raadt
2003-06-25Add a space after flags that take an argumnent in usage() since getopt()Todd C. Miller
supports that.
2003-06-25remove term 3Theo de Raadt
2003-06-25put in a protoTheo de Raadt
2003-06-25bring in protos via headersTheo de Raadt
2003-06-25Typo police: attribute is better written with an 'r'.Miod Vallat
2003-06-25fix unified diff output. ok millert@Ted Unangst
2003-06-25De-uglify usageTodd C. Miller
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
o rename talloc -> emalloc and ralloc -> erealloc o struct direct -> struct dirent (POSIX) o kill remaining strcpy() o fix unterminated string in setfile() deraadt@ OK
2003-06-25delete junk protoTheo de Raadt
2003-06-25defn HAVE_ARC4RANDOM and use itTheo de Raadt
2003-06-25add a missing protoTheo de Raadt
2003-06-25protosTheo de Raadt
2003-06-25add protoTheo de Raadt
2003-06-25protosTheo de Raadt
2003-06-25delete junk protosTheo de Raadt
2003-06-25delete junk protosTheo de Raadt
2003-06-25Fix getopt string for -DTodd C. Miller
2003-06-25cleanup;Jason McIntyre
ok deraadt@
2003-06-25o use getopt()Todd C. Miller
o use err/warn o only call done() when needed (after mkstemp) o add "-C lines" like GNU grep OK deraadt@