summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2003-04-10Some style from Andrey MatveevTodd C. Miller
o avoid including sys/types.h and sys/param.h together o sort includes o in one place warn(3) -> warnx(3) o proper usage() (argument `todir' is optional) Also, fromdir was marked as optional in the manual--it is not.
2003-04-10more POSIX chownTodd C. Miller
2003-04-10Only print the "helpful" prompt in -d mode if there is room on theTodd C. Miller
bottom line for it. Closes PR 3189.
2003-04-10unbreak linking on elf - stupid kerberosPeter Valchev
2003-04-09strip trailing whitespace from config lines before parsing. Fixes bz 528;Damien Miller
ok markus@
2003-04-09syetem -> system;Jason McIntyre
from Marko Cehaja closes PR 3187
2003-04-09Disable Kerberos 4 support.Hans Insulander
ok markus@
2003-04-09Don't include <krb.h> when compiling with Kerberos 5 supportHans Insulander
2003-04-08Replace strcpy w/ strlcpy(); deraadt@ OKTodd C. Miller
2003-04-08remember the last M-x compile command used.Vincent Labrecque
ok art@
2003-04-08rename log() into logit() to avoid name conflict. markus ok, from netbsdJun-ichiro itojun Hagino
2003-04-08string cleanup; ok tdevalTheo de Raadt
2003-04-08progressmeter.c is 4 clause NetBSD.Markus Friedl
2003-04-08oh, and the false protos can goTheo de Raadt
2003-04-08Strcat and Strcpy are no longer usedTheo de Raadt
2003-04-08snprintf; ok tdevalTheo de Raadt
2003-04-08string cleaning; ok tdevalTheo de Raadt
2003-04-08strcpy trashing, help from tedu; ok teduTheo de Raadt
2003-04-08string cleaning; ok teduTheo de Raadt
2003-04-08strlcpy conversion, increase buffer size by one char. ok millert@Daniel Hartmeier
2003-04-07Some NetBSD changes were committed to this file w/o updating theTodd C. Miller
copyright. I have gone through the cvs logs and added the appropriate NetBSD Foundation copyright corresponding to those changes.
2003-04-07The UCB copyright here is incorrect. This code did not originateTodd C. Miller
at UCB, it was written by Luke Mewburn. Updated the copyright at the author's request. markus@ OK
2003-04-07inlined strcpy, should be strncpy anyways; millert ok, from ↵Theo de Raadt
Hans-Joerg.Hoexer@yerbouti.franken.de
2003-04-07replace strcpy calls that got inlined by gcc; ↵Theo de Raadt
Hans-Joerg.Hoexer@yerbouti.franken.de
2003-04-07strlcpy; from Hans-Joerg.Hoexer@yerbouti.franken.deTheo de Raadt
2003-04-07Simplify code for -t using asprintf(); deraadt@ OKTodd C. Miller
2003-04-07string fixes; ian okTheo de Raadt
2003-04-07typo: get correct counters; introduced during rekeying change.Markus Friedl
2003-04-07Sync with sudo 1.6.7p3; fixes kerberos 5 compilation issues w/ MIT kerberos.Todd C. Miller
2003-04-06more strlcpy/strlcat/snprintf, less strcpy/strcat/sprintfTheo de Raadt
reviewed by tdeval, millert, dhartmei and others. more bits coming here from some of them i think
2003-04-06snprintf; ok millertTheo de Raadt
he also suggested i use a strlcpy instead of the existing "%s" it used..
2003-04-06get rid of some strcpy/sprintf.Marc Espie
ok krw@, matthieu@, deraadt@
2003-04-06no strcpy. no strcat. no sprintf. some from deraadt@Ted Unangst
prototype for malloc from stdlib.h, not our own wrong one (in each function!). use strdup, don't roll our own. this program is a real piece of work.
2003-04-06strlcpyTheo de Raadt
2003-04-06The last commit incorporated an incomplete change of mine.Todd C. Miller
2003-04-06strlcpy; ok millertTheo de Raadt
2003-04-06string shit; ok millertTheo de Raadt
2003-04-06Replace a strcpy and associated code with a snprintf whose returnKenneth R Westerback
value is checked. Replace an unhelpful usage() with a relevant error message if the argument buffer overflows. ok millert@
2003-04-06strcat -> strlcat fix. ok tedu@, deraadt@Thierry Deval
2003-04-06kill strcatAlexander Yurchenko
ok mickey@
2003-04-06kill another strcat; ok krwTheo de Raadt
2003-04-06use strlcatTheo de Raadt
2003-04-06a strlcatTheo de Raadt
2003-04-06very simple strlcat callsTheo de Raadt
2003-04-06string fixes; ok millert krwTheo de Raadt
2003-04-06make usage exactly like in the man page; andrushock@korovino.netTheo de Raadt
2003-04-06Rewrite fixit() to use snprintf() and strtol() with bounds and errorTodd C. Miller
checking done in each place. This also removes the bogus limit on the number of '+' and '-' args. deraadt@ OK
2003-04-06string changes; millert okTheo de Raadt
2003-04-06strcpy/strcat cleanup. Ick millert@.Hakan Olsson
2003-04-06more string business; millert ok and suggestion for strdupPeter Valchev