summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2005-03-31and some includes too much here as well, grunkHenning Brauer
2005-03-31zap includes, Alexander von Gernler <grunk@pestilenz.org>Henning Brauer
2005-03-31zap some includes we don't need, Alexander von Gernler <grunk@pestilenz.org>Henning Brauer
2005-03-30remove trailing \n in errx().Moritz Jodeit
ok deraadt@
2005-03-30output final summary to stderr instead of stdout,Moritz Jodeit
so it won't get mixed when tcpdump -w - is used. ok henning@ deraadt@
2005-03-30Use getcap to pull out login.conf entries that contain a localcipherTodd C. Miller
entry instead of giving the user a list of all possible login classes. This makes the default list "daemon default staff" instead of listing all the stub classed only meant for inclusion into the real classes.
2005-03-30spacingTheo de Raadt
2005-03-30Fix some stuff noted by Theo.Hakan Olsson
2005-03-30Move sasyncd(8), for IPsec SA synchronization, in-tree. Work in progress.Hakan Olsson
deraadt@ ok.
2005-03-30bgpd used to open listeners in advance in the parent and the SE pickedHenning Brauer
those it needed, closing all the others. this has some nasty races. so let the parent keep the list of listeners so it knows when it has to open a new one claudio ok, also tested by jason ackley
2005-03-30interface validation cleanup / fixesHenning Brauer
there's some nastiness in the interface validation. clean up by centralizing the checks in kif_validate(). claudio ok
2005-03-29-WallHenning Brauer
2005-03-29clean further, theo okHenning Brauer
2005-03-29make this a bit more readableHenning Brauer
2005-03-29add -F to force replacement of entries with -s and -fHenning Brauer
inspired by a diff from Mike Belopuhov <mkb@cvs.hnet.spb.ru>, these semantics with theo, manpage jaredy jmc and bob, ok bob
2005-03-29document that `#' also needs to be escaped in strings;Jason McIntyre
double quoting strings prevents #, ~, and $ being expanded too; based on a diff from stuart henderson (pr #4156);
2005-03-29The RFC never mentions anything about transfer, this should be transmit.Esben Norby
From Jason Ackley (thanks). ok claudio@
2005-03-29Add an apm interface to the tctrl(4) device found on SPARCbooks; currentlyMiod Vallat
limited to power change events and battery status retrieval. ok deraadt@ mickey@
2005-03-29Allow an apm implementation to return -1 in the minutes_left field of theMiod Vallat
apm_power_info struct, if it has no reasonable value to provide. ok deraadt@ mickey@
2005-03-29explicitely check interface flags for IFF_UP in kroute_validateHenning Brauer
2005-03-29walk & free network and filter lists after parse errorsHenning Brauer
ok claudio theo
2005-03-28KNFNiall O'Higgins
no binary changes.
2005-03-28- More KNFNiall O'Higgins
- Forgot an $OpenBSD$ no binary changes.
2005-03-28one line was 81 chars long. break it up.Niall O'Higgins
2005-03-28clean up this code. make it conform as closely to KNF as possible withoutNiall O'Higgins
introducing any binary changes. two files here have different binary output when the number of lines changes, we will finish cleaning those in another pass.
2005-03-28walk & free peer_l after failed config parsing attemptsHenning Brauer
2005-03-28ewps, this was not supposed to creep inHenning Brauer
2005-03-28free rules_l if the initial config file parse failsHenning Brauer
2005-03-28KNFHenning Brauer
2005-03-28rip out httpd's homegrown sha-1 implementation and use our own.Niall O'Higgins
ok henning@, mod_ssl verified by me. From Sergey Smitienk <hunter@comsys.com.ua> via henning@
2005-03-28better diagnostics on bind() failureHenning Brauer
2005-03-28- KNFNiall O'Higgins
- remove os-aix-dso.c since we don't even compile it. no binary changes.
2005-03-28rip out httpd's homegrown md5 implementation and use our own.Niall O'Higgins
ok henning@, mod_ssl and digest authentication verified by me. From Sergey Smitienk <hunter@comsys.com.ua>
2005-03-28add some const to ether_*. remove bonus prototypes this brought out.Ted Unangst
ok deraadt@
2005-03-27- convert to getopt(3)Niall O'Higgins
- add a usage() function that exits non-zero ok henning@ otto@
2005-03-26inet_addr("127.0.0.1") -> htonl(INADDR_LOOPBACK)Claudio Jeker
Use IN_CLASSA_NET instead of hard coded 0xff000000 OK henning@
2005-03-26proper check on log type. ok henning claudioTed Unangst
2005-03-26simplify state engine, the old one was very confusing and wrong too.Otto Moerbeek
ok moritz@ "just get this in" deraadt@
2005-03-26explciitely 0-initialize pidsHenning Brauer
2005-03-26Prototypes where moved to ospfd.h so no need to keep them here.Claudio Jeker
2005-03-26ospfctl bits for the "ospfctl show fib interface" part. This will printClaudio Jeker
the interface status as seen from the parent kroute perspective. OK henning@ norby@
2005-03-26Implement the IMSG_CTL_IFINFO bits correctly. This is needed forClaudio Jeker
"ospfctl show fib interface". OK henning@ norby@
2005-03-26Move the path_empty()/path_destroy() check out of the inner for-loop.Claudio Jeker
Makes the code more obvious. Idea from tedu@ OK henning@
2005-03-26kroute.c cleanup, simplify code and remove unused functions.Claudio Jeker
OK henning@
2005-03-26fix a little race on SIGCHLD where we must delay the claenup untilHenning Brauer
we invalidated all child pids in case both were killed in a very short time, spotted by and diff from Michael Knudsen <e@molioner.dk>, claudio ok
2005-03-26start sentence with capital letterPeter Valchev
2005-03-25all hail Theo and do as He wishes.Marc Espie
2005-03-25Use the return value from getopt() instead of optopt in non-errorJared Yanovich
cases since optopt is not set in these cases, and it is not required by POSIX that it should be. ok millert otto
2005-03-25use getopt() for argument list parsingRobert Nagy
ok otto@ henning@
2005-03-25whitespaceMoritz Jodeit