summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2003-04-25check asprintf return value for error, as the pointer is not guaranteedPeter Valchev
to be NULL in such case; ok millert
2003-04-25Don't assume that asprintf() will leave "tempfile" unmolested whenTodd C. Miller
memory allocation fails. Noted and OK by pval@
2003-04-25add bounds to some more %s in sscanfAnil Madhavapeddy
ok millert@
2003-04-25add missing .El's for .Bl macros;Jason McIntyre
2003-04-25minor tweak to error message, from Eric in pr3235Ted Unangst
2003-04-22some entries from encyclopedia 'holy ross' by o. platonovMichael Shalayeff
2003-04-22Tell glob() to do tilde and brace expansion too.Todd C. Miller
2003-04-21Stop parsing arguments when we hit "--".Todd C. Miller
2003-04-21build expanded brace with more explicit bound checking.Marc Espie
okay millert@
2003-04-21mdocify; apparently no one every reads this man page.Todd C. Miller
2003-04-21mdoc version from NetBSD (wiz) with minor modifications and local changes.Todd C. Miller
2003-04-21Use strlcpy() and snprintf() in favor of inline strcpy() and sprintf().Todd C. Miller
Based on a diff from krw but this uses the strlcpy() / snprintf() return values. millert tested, krw approved...
2003-04-19string handling, ok deraadt@Daniel Hartmeier
2003-04-19string handling, partly from and ok deraadt@Daniel Hartmeier
2003-04-19sync w/ the sudo cvs tree and sudo 1.6.7p4Todd C. Miller
2003-04-19strcpy/strcat/sprintf removal; krw@ OKTodd C. Miller
2003-04-18hackers of the planet earthMichael Shalayeff
2003-04-18get someMichael Shalayeff
2003-04-17Hard-code charset if SMALLTodd C. Miller
2003-04-17nuke strcpy + -WallHenning Brauer
parts from and ok mickey@
2003-04-17%u is 11 chars, not 10; ok miod deraadt millert teduPeter Valchev
2003-04-17trivial snprintfTheo de Raadt
2003-04-17eliminate strcpy/sprintf. reviewed by deraadt and millert.Jun-ichiro itojun Hagino
2003-04-16no more less.nroTodd C. Miller
2003-04-16mdoc format man pages from jmc@Todd C. Miller
2003-04-16strcpy() removal; based on a patch from henning@ but simplifiedTodd C. Miller
2003-04-16Fix a buffer overflow in complt_list(); it was allocating spaceTodd C. Miller
based on nrow when it wanted ncol. Also make the space-padding more bulletproof and avoid trying to pad w/ 0 characters. Closed PR 3190; vincent@ OK
2003-04-16document struct Authctxt; with solarMarkus Friedl
2003-04-16lalloc() - return NULL on error, not FALSETodd C. Miller
lrealloc() - don't realloc if new size <= old size. Avoids a realloc(p, 0) vincent@ OK
2003-04-16kill += snprintfTheo de Raadt
2003-04-15I lied, we didn't skip blanks after WHOIS_SERVER_ID; this fixes that.Todd C. Miller
2003-04-15Remove trailing space in "Whois Server: " since not all recordsTodd C. Miller
have whitespace separating that string and the hostname of the whois server (and we strip out whitespace before the hostname anyway). Fixes lookups of .org and probably others.
2003-04-15No, vi does not ignore SIGQUITTodd C. Miller
2003-04-15^Z Stop systat -> ^Z Suspend systat;Jason McIntyre
from Okan Demirmen; ok millert@
2003-04-15kill a += snprintfTheo de Raadt
2003-04-15various cleaningTheo de Raadt
2003-04-15snprintf of courseTheo de Raadt
2003-04-15incorrect buf size; ok itojunTheo de Raadt
2003-04-15a bit of string cleaningTheo de Raadt
2003-04-14Missing globfree(&g) in process_put() spotted by Vince Brimhallmouring
<VBrimhall@novell.com>. ok@ Theo
2003-04-14recommit, with the typo fixedTheo de Raadt
2003-04-14oopsTheo de Raadt
2003-04-14No more LESSECHO environment variableTodd C. Miller
2003-04-14help.o now needs HELPFILE defined tooTodd C. Miller
2003-04-14less uses the "lessecho" command to do globbing on systems thatTodd C. Miller
don't have libc glob routines. We have glob(3) but for some reason, less only uses this on DOS w/ djgppc. I have pared down lglob.h to just have the glob(3) bits and to include glob.h itself. This removes the need for lessecho on OpenBSD.
2003-04-14use correct string functions in exampleTheo de Raadt
2003-04-14Make the GNU_OPTIONS define actually do something (was a no-op)Todd C. Miller
2003-04-14o go back to using a help file instead of embedding it in the binaryTodd C. Miller
o deal with HELPFILE not being defined o add a SMALL definition to make a smaller less for the boot floppies This still needs to be pared down a bit for the SMALL case
2003-04-14avoid hardcoded SOCK_xx; with itojun@; should allow ssh over SCTPMarkus Friedl
2003-04-14built in -> built-in;Jason McIntyre
from NetBSD (Igor Sobrado); smrsh(8) passed on to sendmail people; ok millert@