Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | remove leftover NOLINT, WANTLINT, LINTFLAGS, LOBJ vars and lint targets. | 2012-08-02 | 1 | -2/+1 | |
| | | | | ok guenther@ | ||||
* | Make printf-like and scanf-like functions marked as such in llib-lc.ln | 2011-05-30 | 1 | -1/+3 | |
| | | | | | | | and llib-lwrap.ln databases; so that the lint features doing format strings checks are enabled by default. Looks good to millert@. | ||||
* | rcsid[] and sccsid[] and copyright[] are essentially unmaintained (and | 2009-10-27 | 15 | -130/+14 | |
| | | | | | | | unmaintainable). these days, people use source. these id's do not provide any benefit, and do hurt the small install media (the 33,000 line diff is essentially mechanical) ok with the idea millert, ok dms | ||||
* | convert to new .Dd format; | 2007-05-31 | 4 | -8/+8 | |
| | |||||
* | mention sys/types.h needed; eth0@o2.pl | 2006-12-21 | 1 | -1/+2 | |
| | |||||
* | delint | 2006-04-14 | 3 | -12/+14 | |
| | | | | ok otto@ | ||||
* | use WANTLINT= (on all architectures) | 2005-11-24 | 1 | -1/+2 | |
| | |||||
* | Use correct size when zeroing fd sets. From Michael Shuldman in PR | 2005-11-10 | 1 | -6/+10 | |
| | | | | 4603 with a twist by me. ok deraadt@ | ||||
* | errno changes, lib major version bumps, and general flag day | 2004-07-13 | 1 | -1/+1 | |
| | | | | | | | To build you must: cd /usr/src && make obj && make includes cd lib/libc && make depend && make && NOMAN=1 sudo make install cd /usr/src && make build | ||||
* | Remove redundant errno declaration. ok deraadt@ | 2004-05-31 | 1 | -3/+2 | |
| | |||||
* | new sentence, new line; | 2004-02-19 | 1 | -7/+10 | |
| | |||||
* | escape full stops where necessary to kill erroneous double spaces; | 2004-02-19 | 1 | -2/+2 | |
| | | | | softly, softly, catchy monkey... | ||||
* | obvious typi inside an #ifdef | 2003-12-27 | 1 | -2/+2 | |
| | | | | FreeBSD PR 59674 via jmc@ | ||||
* | refer to RFCs consistently (RFC XXXX); | 2003-08-08 | 1 | -2/+2 | |
| | |||||
* | add missing includes | 2003-07-18 | 2 | -4/+6 | |
| | | | | ok tedu@ | ||||
* | some \" -> .\" that i missed earlier; | 2003-07-08 | 4 | -8/+8 | |
| | |||||
* | - fix some lists and displays | 2003-07-08 | 3 | -70/+44 | |
| | | | | - simplify macros | ||||
* | terms 3 & 4 cleanup based on "terms" file | 2003-06-03 | 4 | -32/+4 | |
| | |||||
* | fix various 3/4 licenses according to "terms" file | 2003-06-03 | 1 | -8/+1 | |
| | |||||
* | - section reorder | 2003-06-02 | 2 | -28/+28 | |
| | | | | - new sentence, new line | ||||
* | if reverse lookup result looks like a numeric hostname, | 2003-05-27 | 1 | -2/+23 | |
| | | | | | | someone is trying to trick us by PTR record like following: 1.1.1.10.in-addr.arpa. IN PTR 2.3.4.5 so protect against this kind of attacks. deraadt ok | ||||
* | - typos; | 2003-05-24 | 2 | -6/+6 | |
| | | | | | - new sentence, new line; - whitespace at EOL | ||||
* | NetBSD PR 15025: libwrap hangs in an infinite loop when a host access line | 2003-05-15 | 1 | -3/+3 | |
| | | | | | is > 2048 characters long. ok millert a long time ago. | ||||
* | - kill unused var | 2003-04-19 | 3 | -11/+13 | |
| | | | | | | | | - sscanf format string should scan for u_short not u_int - some missing includes - convert u_short -> in_port_t (from millert) ok millert@ | ||||
* | sprintf -> snprintf | 2003-04-05 | 1 | -6/+8 | |
| | | | | ok tedu@, krw@; hints deraadt@, millert@ | ||||
* | strcpy/strcat -> strlcpy/strlcat | 2003-04-05 | 1 | -3/+3 | |
| | | | | ok tedu@, hints by deraadt@ and millert@ | ||||
* | rfc -> RFC | 2003-04-03 | 1 | -3/+3 | |
| | | | | implenented -> implemented | ||||
* | .Nd shouldn't end with a period | 2003-03-22 | 1 | -2/+2 | |
| | | | | ok jmc@ | ||||
* | date should be written formally: .Dd Month day, year | 2003-03-06 | 1 | -2/+2 | |
| | | | | ok henning@ jmc@ | ||||
* | more typos; jmc@prioris.mini.pw.edu.pl | 2003-01-18 | 1 | -11/+11 | |
| | |||||
* | If we're going to replace strtok() with strtok_r(), and the caller of the | 2002-12-31 | 1 | -3/+4 | |
| | | | | | | | | | latter is invoked recursively, use static (instead of automatic) storage for the "last" pointer so that we remember where we're up to ... Fixes bug with hosts.deny rules such as "rpcbind: ALL EXCEPT some.domain". netbsd lib/libwrap/hosts_access.c 1.17 | ||||
* | Crank all library major numbers. Needed due to the fact that we | 2002-12-03 | 1 | -1/+1 | |
| | | | | | | | | now build libraries with propolice enabled. Without this, existing binaries (such as ports/packages) that link with any system library other than libc will fail with an undefined symbol of "___guard" (__guard on ELF). Pointed out by markus@ and discussed with deraadt@ | ||||
* | remove BUGS section; this library uses strtok_r(3) now. | 2002-06-22 | 1 | -7/+1 | |
| | |||||
* | use strtok_r() instead of strtok(); millert ok | 2002-06-22 | 1 | -7/+8 | |
| | |||||
* | use more snprintf | 2002-06-19 | 1 | -4/+4 | |
| | |||||
* | support scoped IPv6 address. | 2002-06-07 | 3 | -186/+227 | |
| | | | | | no visible API change, old config files work just fine. now you can use expressions like "ALL: [fe80::%lo0/64]". theo ok | ||||
* | func prototype | 2002-06-07 | 1 | -2/+5 | |
| | |||||
* | more strict prototype | 2002-06-07 | 2 | -26/+43 | |
| | |||||
* | snprintf | 2002-06-07 | 1 | -4/+4 | |
| | |||||
* | compatiblity -> compatibility | 2002-06-03 | 1 | -3/+3 | |
| | | | | | | decriptor -> descriptor authentciated -> authenticated transmition -> transmission | ||||
* | unsigned vs unsigned int | 2002-05-27 | 1 | -3/+3 | |
| | |||||
* | pid_t cleanup | 2002-05-26 | 1 | -3/+3 | |
| | |||||
* | Character 0 is called NUL, not nul. | 2002-05-01 | 1 | -2/+2 | |
| | |||||
* | YP, not NIS | 2002-05-01 | 1 | -5/+4 | |
| | |||||
* | o) start new sentence on a new line; | 2002-05-01 | 4 | -109/+146 | |
| | | | | | | | o) always close .Bl tags; o) fix usage of .Xr; millert@ ok | ||||
* | Initial cleanup: | 2002-04-30 | 1 | -14/+14 | |
| | | | | | | | | | | | | o) remove extra space in the end of line; o) remove extra blank lines in the end of file; o) remove .Pp before .Ss; o) CAVEAT -> CAVEATS; o) fix usage of .Fa; o) <blank-line> -> .Pp; o) wrap long lines; millert@ ok | ||||
* | Protect IPv6 code with #ifdef INET6 | 2002-04-25 | 1 | -2/+10 | |
| | | | | millert@ ok | ||||
* | wrong error message | 2002-02-24 | 1 | -3/+3 | |
| | |||||
* | We live in an ANSI C world. Remove lots of gratuitous #ifdef __STDC__ cruft. | 2002-02-19 | 3 | -37/+17 | |
| | |||||
* | Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically. | 2002-02-16 | 1 | -28/+28 | |
| |