Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-10-28 | rcsid[] and sccsid[] and copyright[] are essentially unmaintained (and | Theo de Raadt | |
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 | |||
2007-05-31 | convert to new .Dd format; | Jason McIntyre | |
2006-10-18 | do not name FILE * variables "fd" since it is confusing | Theo de Raadt | |
2006-03-17 | fix a few off-by-ones; from NetBSD; ok deraadt@ | Otto Moerbeek | |
2005-10-14 | Use queue macros instead of directly accessing fields. ok millert@ pat@ | Otto Moerbeek | |
deraadt@ | |||
2004-11-09 | Avoid use after free(), slight optimization. From Patrick Latifi. | Otto Moerbeek | |
ok tom@ deraadt@ | |||
2004-08-08 | spacing | Theo de Raadt | |
2004-03-10 | spaces | Theo de Raadt | |
2004-03-10 | close file on error paths. from Patrick Latifi | Ted Unangst | |
2003-07-29 | spaces | Theo de Raadt | |
2003-06-26 | simple protos | Theo de Raadt | |
2003-06-11 | ansi cleanup; ok ian markus | Theo de Raadt | |
2003-06-02 | Remove the advertising clause in the UCB license which Berkeley | Todd C. Miller | |
rescinded 22 July 1999. Proofed by myself and Theo. | |||
2002-11-25 | avoid size_t -> int conversion. style nit for sizeof(). David Krause | Jun-ichiro itojun Hagino | |
2002-10-08 | sa_family on wire is network byteorder. from Alexander Yurchenko ↵ | Jun-ichiro itojun Hagino | |
<grange@rt.mipt.ru> | |||
2002-09-25 | - "resposne" is used without initialization, so zero-fill | Jun-ichiro itojun Hagino | |
- sendto(2) performed with osockaddr, so avoid that - reject anything other than AF_INET based on patch from xs@kittenz.org. deraadt/millert ok | |||
2002-09-24 | Allocate vis_user on the stack instead of using malloc(). This | Todd C. Miller | |
way we don't have to worry about malloc() failure. Also closes a memory leak since vis_user was never free()d. Lack of malloc() checking pointed out by Peter Werner. | |||
2002-09-06 | use socklen_t more; henning ok | Theo de Raadt | |
2002-07-07 | typos/grammar/better words | Jan-Uwe Finck | |
in comments. | |||
2002-07-03 | add a missing newline to an error message. | Vincent Labrecque | |
from Jean-Francois Brousseau <krapht@secureops.com> ok deraadt@ | |||
2002-06-21 | o Use *_FILENO defines instead of numbers | Todd C. Miller | |
o Kill sockt global, it is not needed o Use STDOUT_FILENO as the 1st arg to sendto(). Previously we used sockt in sendto() which only worked because a) globals are intialized to 0 and b) inetd sets up fds 0-2 dup'd to the same thing so it didn't matter that we were sending to stdin, not stdout. | |||
2002-05-22 | Fix last commit. | Todd C. Miller | |
2002-05-22 | Fix some ut_line manipulation pointed out by Moritz Jodeit. | Todd C. Miller | |
Fixes from Theo and myself. | |||
2002-05-22 | typo; moritz@jodeit.org | Theo de Raadt | |
2002-05-22 | whack sprintf | Theo de Raadt | |
2002-05-22 | strlcpy sprinkling | Theo de Raadt | |
2002-05-21 | KNF | Theo de Raadt | |
2002-05-16 | KNF | Theo de Raadt | |
2002-02-19 | Fix gethostname() usage. | Mike Pechkin | |
deraadt@ ok | |||
2002-02-16 | Part one of userland __P removal. Done with a simple regexp with some minor ↵ | Todd C. Miller | |
hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically. | |||
2001-12-07 | kill more registers; | Mike Pechkin | |
millert@ ok | |||
2001-07-08 | -Wall | Theo de Raadt | |
2001-01-11 | save_errno in signal handler | Theo de Raadt | |
2000-10-10 | need more size to big_buf for line termination (\r\n). | Jun-ichiro itojun Hagino | |
2000-07-06 | use %s with fprintf | Theo de Raadt | |
2000-03-28 | need an ntalkd man page, obviously | Theo de Raadt | |
1999-11-29 | back out TAILQ_FOREACH - not portable, deraadt@ | David Leonard | |
1999-11-29 | use TAILQ_FOREACH, ok mickey@ | David Leonard | |
1999-05-23 | remove argument from .Os macros so value in /usr/share/tmac/mdoc/doc-common | Aaron Campbell | |
is used instead; kwesterback@home.com | |||
1998-08-18 | TIOCNOTTY is the default in POSIX termios, no need to explicately ask for it. | Todd C. Miller | |
1998-07-10 | do not syslog() with "\n"; skipped smtpd/named/ipmon; 12 minutes of dabbling | Theo de Raadt | |
1998-07-08 | Force NUL termination of strings in request we get from client; ↵ | Todd C. Miller | |
okir@monad.swb.de | |||
1998-07-03 | S_IWGRP | Theo de Raadt | |
1996-07-19 | Patch to catch non-printables in the announce string | Todd C. Miller | |
(ala the 'flash' hack) from FreeBSD (cleanup of patch from Dima Ruban <dima@demos.su>). Also fixes a syslog() message--we use recvfrom now. | |||
1996-07-18 | param.h | Theo de Raadt | |
1996-07-18 | \007 instead of ^G; from phk@freebsd.org | Theo de Raadt | |
1996-07-18 | full hostnames; from cstruble@singularity.bevc.blacksburg.va.us | Theo de Raadt | |
1996-07-17 | buffer overflow from dholland@hcs.HARVARD.EDU; could do with some cleanup? | Theo de Raadt | |
1996-07-17 | buffer overflow | Theo de Raadt | |
1996-07-15 | fix time differencies computations (orig from alan@parsys.co.uk, but | Michael Shalayeff | |
don't use difftime(3), it returns double) use <sys/queue.h> for queue maintanance |