summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2004-03-19Pass SIGINT to child. Noticed by mpech@, ok jakob@Can Erkin Acar
2004-03-19Fix memory leak in error path. Found by Patrick Latifi. OK henning@Claudio Jeker
2004-03-19Remove errant ';' from end of for() statement. deraadt@ okAaron Campbell
2004-03-19procmap/pmap confusion, spotted by jmc@Ted Unangst
2004-03-18When using an install prefix with -B to install packages, and the packingThorsten Lockert
list uses @owner, @group and/or @mode, setting these did not use the install prefix. ok deraadt@
2004-03-18when we are in state CONNECT, i. e. we have a half-open tcp connectionHenning Brauer
to the peer, and we get a connection from exactly that peer, we used to refuse it (because we already had a - tho only half-open - connection). this diff changes that so that the connection request from the neighbor is preferred in only that specific case, and the existing half-open connection is teared down. this can speed up session re-establishment quite a bit, especially with multihop. claudio ok
2004-03-18various fixes from Jared Yanovich;Jason McIntyre
thanks Jared!
2004-03-180 vs NULL, from Joris VinkTed Unangst
2004-03-17consistencyHenning Brauer
2004-03-17remove getpeereid() call so that those who have write access to the socketHenning Brauer
(root:wheel 0640) can send queries, claudio ok
2004-03-17Add missing space for sets in network statements.Claudio Jeker
2004-03-17add references to procmap(1) in SEE ALSO;Jason McIntyre
suggested by tedu@
2004-03-16add -M and -N to options list;Jason McIntyre
sort options; sync usage();
2004-03-16add fstat(1) reference to SEE ALSO;Jason McIntyre
suggested by Drew Einhorn;
2004-03-16fix dud example; from leopold-bloom at foni dot net;Jason McIntyre
ok deraadt@
2004-03-16tcp md5sig requires that local-address is specified as well for now, soHenning Brauer
enforce it.
2004-03-16delay creating the control socket until after forking, but before chrootHenning Brauer
(lives in /var/run, i. e. outside chroot) and privdrop. claudio ok
2004-03-16typos from Andrey Matveev;Jason McIntyre
2004-03-16errno is not specified to be int, but something from errno.h. ok millert@Ted Unangst
2004-03-15if (foo); ok aaron@Damien Miller
2004-03-15call daemon(3) early; from tholo@; ok mcbride@Markus Friedl
2004-03-15use switch instead of if { } else if { } else { }Henning Brauer
2004-03-15add a default: case to the switch (sensor type) in the config file parserHenning Brauer
that just errs out if someone tries to configure limits for a sensor type we do not support, deraadt ok
2004-03-15Plug memory leak caused by errant semi-colon. Already submitted and committedAaron Campbell
to arla-CURRENT by lha at stacken.kth.se. miod@ ok
2004-03-15properly check chdir success after chroot() and tweak err msgs a little,Henning Brauer
claudio ok
2004-03-15correct .Pa for ppp.conf.sample;Jason McIntyre
from leopold-bloom at foni dot net; also, fix some spacing issues;
2004-03-15more accurate msg, pr3713 from Andre LucasTed Unangst
2004-03-15iffy syntax; ok deraadt@Damien Miller
2004-03-15zero struct sockaddr_un before use, from andrushock AT korovino.net; ok deraadt@Damien Miller
2004-03-14Check return code of chdir() after chroot(); noted by Joris Vink, slight modOtto Moerbeek
from avsm@. ok avsm@ hshoexer@ henning@
2004-03-13- typosJason McIntyre
- new sentence, new line - tidy up a list
2004-03-12fix SEE ALSO;Jason McIntyre
2004-03-12*size is a u_int16_t not a pointer so use 0 instead of NULL.Claudio Jeker
2004-03-12bgpctl has a empty-as keyword so make this actually work. Handle AS_EMPTYClaudio Jeker
in aspath_match().
2004-03-12I modified the print format for AS_SET so keep the aspath_strlen() functionClaudio Jeker
in sync.
2004-03-12print that capabilities stuffHenning Brauer
2004-03-12tweak err reportingHenning Brauer
2004-03-12tweakHenning Brauer
2004-03-12not debugging any moreHenning Brauer
2004-03-12Privilege seperation for named. Allows named to handle address/interfaceCan Erkin Acar
changes without restart. If you use non-standard ports in named configuration make sure they are > 1024. Also /var/named/etc/rndc.key (if any) must be readable by group named. Initial work and testing by itojun@, jakob@, hints, help from henning@, avsm@, beck@. ok henning, beck, avsm, deraadt
2004-03-12tab at EOLClaudio Jeker
2004-03-12Document "show rib" interface. OK jmc@ henning@Claudio Jeker
2004-03-12Update man page to reflect reality. Added filtering section and some newClaudio Jeker
statements. OK jmc@ henning@
2004-03-12fix the "wait for child processes to terminate" code, and move it down a bitHenning Brauer
millert ok
2004-03-12Rewrite community_match() for loop. yaya henning@Claudio Jeker
2004-03-12Check payload size more carefully when printing ike messages. Identified byHans-Joerg Hoexer
cloder@. ok ho@ otto@ cloder@
2004-03-11There is no cnumber token in the parser so don't define a type for it.Claudio Jeker
2004-03-11Plugging memory leaks is OK but don't break intended behaviour. So this timeClaudio Jeker
do it correctly.
2004-03-11repair pkg_add -, by making sure `-' is a special object.Marc Espie
2004-03-11fix leak, found by Patrick Latifi <pat@eyeo.org>Bob Beck
ok millert@, dhartmei@