Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-05-10 | Be polite about leaving invalid data around in globals, just in case | Chad Loder | |
someone comes along later, modifies the code, and runs into a problem. OK beck@ | |||
2003-05-10 | catch up with pfctl changes | Henning Brauer | |
2003-05-09 | No longer need -lcompat | Todd C. Miller | |
2003-05-08 | replace strcpy with strlcpy and some strdup. | Ted Unangst | |
ok rohee@ tdeval@ dhartmei@ requested by deraadt@ | |||
2003-05-08 | strcpy->strlcpy | Vincent Labrecque | |
ok deraadt | |||
2003-05-08 | AUTHOR -> AUTHORS in .Sh, as per mdoc template. | Jason McIntyre | |
2003-05-08 | used .Li for examples, as per first example. | Jason McIntyre | |
CDROM -> CD-ROM for consistency. "make depend" and "make clean" wrapped in double quotes for consistency. ok millert@ | |||
2003-05-08 | .Xr newsyslog | Todd C. Miller | |
2003-05-07 | bounds were sizeof(pointer) rather than size of the object; found with | Theo de Raadt | |
anil's gcc bounds checker mod | |||
2003-05-06 | fix harmless typo i introduced with previous string cleaning. | Ted Unangst | |
spotted by rohee@ | |||
2003-05-05 | a couple of off-by-one string bounds in sscanf | Anil Madhavapeddy | |
millert@ ok | |||
2003-05-05 | -Wall cleanup: trim unused vars, better err() message in stdhosts, | Anil Madhavapeddy | |
and constify rcsid[] deraadt@ ok | |||
2003-04-30 | add an ap_server_strip_chroot for LoadModule tags. this partially | Anil Madhavapeddy | |
unbreaks apachectl restarts (it still dies when it hits dlopen later on) henning@ ok | |||
2003-04-30 | one more strvis -> strnvis. | Vincent Labrecque | |
ok millert | |||
2003-04-30 | pull in stdlib.h to avoid implicit decl of calloc(); ok henning | Jason Wright | |
2003-04-30 | Allow tables to be loaded into anchors. | Cedric Berger | |
Most pfctl table commands (excluding 'show' and 'flush') support the "-a" modifier. ok dhartmei@ | |||
2003-04-30 | a OCTET -> an OCTET; | Jason McIntyre | |
2003-04-29 | nothing uses the stuff in rxk_info, so until the overflows are fixed, skip it | Theo de Raadt | |
2003-04-28 | strncpy IS NOT strlcpy | Thierry Deval | |
blame from deraadt@, krw@ | |||
2003-04-28 | String cleanup, from beck@ | Thierry Deval | |
With some personal enhancements. ok beck@ | |||
2003-04-28 | more string cleaning; ok beck | Theo de Raadt | |
2003-04-28 | string cleaning | Theo de Raadt | |
2003-04-28 | strings. tdeval and I finally agree on this :) | Bob Beck | |
ok tdeval@ | |||
2003-04-28 | advocate posix ":" for user:group. deraadt ok | Jun-ichiro itojun Hagino | |
2003-04-27 | string cleaning; from tdeval and tedu | Theo de Raadt | |
2003-04-25 | kill #if 0 code w/ evil string functions, deraadt/tdeval | Henning Brauer | |
2003-04-25 | comment cleanup | Theo de Raadt | |
2003-04-25 | Compile with -ansi -pedantic. Replace one ugly lvalue cast with a memcpy. | Chad Loder | |
Replace some strtoul with strtol and additional < 0 checks where needed. OK millert | |||
2003-04-25 | replace an unbounded %s in a sscanf with a bounded one | Anil Madhavapeddy | |
ok millert@ | |||
2003-04-25 | add missing .El's for .Bl macros; | Jason McIntyre | |
2003-04-25 | - add missing .El macros (7 of them!) | Jason McIntyre | |
- use .Bl not .Bd for lists - whitespace at EOL killed - typos in macros - .El -width shortened Ds -> XXXX | |||
2003-04-25 | eliminate a sprintf in code we don't use, prodded by and ok jsyn@ | Henning Brauer | |
2003-04-25 | ICMP types are u_int8_t. Use u_int8_t and %u for ICMP types instead of | Chad Loder | |
u_char and %d. OK millert | |||
2003-04-25 | TTL is defined as u_int8_t in both <netinet/ip.h> and | Chad Loder | |
<netinet6/ip6_var.h>. Don't need to use int and %d for TTL in traceroute. OK millert | |||
2003-04-24 | better bounds for strlcpy. from lha@stacken via janj+openbsd at wenf.org. | Ted Unangst | |
thanks | |||
2003-04-24 | Validation of command line argument for packet data length was comparing | Chad Loder | |
to the wrong thing, which resulted in a confusing error message later on. Do validation on the user supplied parameter. ok millert | |||
2003-04-24 | fix bounds for strlcpy. pr3228 from Jan Johansson | Ted Unangst | |
2003-04-23 | updated links to FreeBSD ppp docs; | Jason McIntyre | |
from Michael Tannenbaum (PR 3224); ok millert@ | |||
2003-04-23 | more snprintf and strlcpy/strlcat fixes. from todd@ and tedu@. | Jakob Schlyter | |
2003-04-22 | port numbers are unsigned. use %u. from kame | Jun-ichiro itojun Hagino | |
2003-04-20 | more afs string cleaning; pvalchev ok | Theo de Raadt | |
2003-04-20 | oh, the cgi-man thing... duh | Theo de Raadt | |
2003-04-20 | authpf is supposed to die if the /etc/authpf/authpf.conf is not present. | Bob Beck | |
pr # 3217, patch from frisco@blackant.net | |||
2003-04-19 | Sync usage() and man page; closes PR 3219 | Todd C. Miller | |
2003-04-19 | transposed args to snprintf, millert@ ok | Anil Madhavapeddy | |
2003-04-19 | format string typo in usage (%d -> %s for program name) | Anil Madhavapeddy | |
2003-04-19 | string stuff, ok krw@ deraadt@ | Henning Brauer | |
2003-04-19 | string stuff, ok krw@ | Henning Brauer | |
2003-04-17 | Assign the return value of snprintf to an int, not a char. fixes a comparison | Dale Rahn | |
is always true error on ppc. ok millert@ | |||
2003-04-17 | Change a few return values from char to int since these functions | Todd C. Miller | |
can return EOF. Fixes gcc warnings (and potential problems) on ppc. |