Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-04-25 | check asprintf return value for error, as the pointer is not guaranteed | Peter Valchev | |
to be NULL in such case; ok millert | |||
2003-04-25 | Don't assume that asprintf() will leave "tempfile" unmolested when | Todd C. Miller | |
memory allocation fails. Noted and OK by pval@ | |||
2003-04-25 | add bounds to some more %s in sscanf | Anil Madhavapeddy | |
ok millert@ | |||
2003-04-25 | add missing .El's for .Bl macros; | Jason McIntyre | |
2003-04-25 | minor tweak to error message, from Eric in pr3235 | Ted Unangst | |
2003-04-22 | some entries from encyclopedia 'holy ross' by o. platonov | Michael Shalayeff | |
2003-04-22 | Tell glob() to do tilde and brace expansion too. | Todd C. Miller | |
2003-04-21 | Stop parsing arguments when we hit "--". | Todd C. Miller | |
2003-04-21 | build expanded brace with more explicit bound checking. | Marc Espie | |
okay millert@ | |||
2003-04-21 | mdocify; apparently no one every reads this man page. | Todd C. Miller | |
2003-04-21 | mdoc version from NetBSD (wiz) with minor modifications and local changes. | Todd C. Miller | |
2003-04-21 | Use 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-19 | string handling, ok deraadt@ | Daniel Hartmeier | |
2003-04-19 | string handling, partly from and ok deraadt@ | Daniel Hartmeier | |
2003-04-19 | sync w/ the sudo cvs tree and sudo 1.6.7p4 | Todd C. Miller | |
2003-04-19 | strcpy/strcat/sprintf removal; krw@ OK | Todd C. Miller | |
2003-04-18 | hackers of the planet earth | Michael Shalayeff | |
2003-04-18 | get some | Michael Shalayeff | |
2003-04-17 | Hard-code charset if SMALL | Todd C. Miller | |
2003-04-17 | nuke strcpy + -Wall | Henning Brauer | |
parts from and ok mickey@ | |||
2003-04-17 | %u is 11 chars, not 10; ok miod deraadt millert tedu | Peter Valchev | |
2003-04-17 | trivial snprintf | Theo de Raadt | |
2003-04-17 | eliminate strcpy/sprintf. reviewed by deraadt and millert. | Jun-ichiro itojun Hagino | |
2003-04-16 | no more less.nro | Todd C. Miller | |
2003-04-16 | mdoc format man pages from jmc@ | Todd C. Miller | |
2003-04-16 | strcpy() removal; based on a patch from henning@ but simplified | Todd C. Miller | |
2003-04-16 | Fix a buffer overflow in complt_list(); it was allocating space | Todd 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-16 | document struct Authctxt; with solar | Markus Friedl | |
2003-04-16 | lalloc() - return NULL on error, not FALSE | Todd C. Miller | |
lrealloc() - don't realloc if new size <= old size. Avoids a realloc(p, 0) vincent@ OK | |||
2003-04-16 | kill += snprintf | Theo de Raadt | |
2003-04-15 | I lied, we didn't skip blanks after WHOIS_SERVER_ID; this fixes that. | Todd C. Miller | |
2003-04-15 | Remove trailing space in "Whois Server: " since not all records | Todd 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-15 | No, vi does not ignore SIGQUIT | Todd C. Miller | |
2003-04-15 | ^Z Stop systat -> ^Z Suspend systat; | Jason McIntyre | |
from Okan Demirmen; ok millert@ | |||
2003-04-15 | kill a += snprintf | Theo de Raadt | |
2003-04-15 | various cleaning | Theo de Raadt | |
2003-04-15 | snprintf of course | Theo de Raadt | |
2003-04-15 | incorrect buf size; ok itojun | Theo de Raadt | |
2003-04-15 | a bit of string cleaning | Theo de Raadt | |
2003-04-14 | Missing globfree(&g) in process_put() spotted by Vince Brimhall | mouring | |
<VBrimhall@novell.com>. ok@ Theo | |||
2003-04-14 | recommit, with the typo fixed | Theo de Raadt | |
2003-04-14 | oops | Theo de Raadt | |
2003-04-14 | No more LESSECHO environment variable | Todd C. Miller | |
2003-04-14 | help.o now needs HELPFILE defined too | Todd C. Miller | |
2003-04-14 | less uses the "lessecho" command to do globbing on systems that | Todd 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-14 | use correct string functions in example | Theo de Raadt | |
2003-04-14 | Make the GNU_OPTIONS define actually do something (was a no-op) | Todd C. Miller | |
2003-04-14 | o go back to using a help file instead of embedding it in the binary | Todd 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-14 | avoid hardcoded SOCK_xx; with itojun@; should allow ssh over SCTP | Markus Friedl | |
2003-04-14 | built in -> built-in; | Jason McIntyre | |
from NetBSD (Igor Sobrado); smrsh(8) passed on to sendmail people; ok millert@ |