Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-10-21 | in client_nextaddr, check fd != -1 before close, just nicer this way | Henning Brauer | |
From: amandal@entrisphere.com | |||
2006-10-21 | Found that even if client fd (i.e to NTP source) is set to | Henning Brauer | |
-1 because of error, it may still participate in poll() causing poll() to repeatedly wake up on error fd. so make sure w edon't add -1 fds to pollevents to avoid unnecessary wakeups From: amandal@entrisphere.com | |||
2006-10-21 | when ntp_sendmsg fails, reset trustlevel to TRUSTLEVEL_PATHETIC | Henning Brauer | |
From: amandal@entrisphere.com | |||
2006-10-21 | EADDRNOTAVAIL after connect is one of the soft errors where we don't abort | Henning Brauer | |
too. from amandal@entrisphere.com | |||
2006-10-20 | indent | Theo de Raadt | |
2006-10-19 | Correct function name in log_debug() messages | Ryan Thomas McBride | |
2006-10-18 | do not name FILE * variables "fd" since it is confusing | Theo de Raadt | |
2006-10-18 | uppercase for `RFC'; | Jason McIntyre | |
2006-10-18 | symlinks marked @extra need special care for deletion | Nikolay Sturm | |
ok bernd, espie | |||
2006-10-18 | Controller for the ripd. | Esben Norby | |
All relevant information in the rip daemon can be displayed with this controller. Not connected to builds yet. ok claudio@ | |||
2006-10-18 | Welcome ripd started by Michele Marchetto some time ago by using the ↵ | Esben Norby | |
imsg/three process framework of ospfd. He implemented most of the daemon with a little help and guidance from Claudio and I. Currently the daemon is more or less complete, with the exception of key lifetime and rollover. Not yet connected to the builds. OK claudio@ | |||
2006-10-18 | Welcome ripd | Esben Norby | |
started by Michele Marchetto some time ago by using the imsg/three process framework of ospfd. He implemented most of the daemon with a little help and guidance from Claudio and I. Currently the daemon is more or less complete, with the exception of key lifetime and rollover. Not yet connected to the builds. OK claudio@ | |||
2006-10-17 | add proper version handling, not really used yet. | Marc Espie | |
2006-10-17 | add -F conflicts: force installation in the presence of registered conflicts, | Marc Espie | |
provided nothing else happens (like, huh, the presence of actual conflicts between files). Allows nikolay@ to work with redhat/base and fedora_core at the same time. | |||
2006-10-15 | Close file descriptors before cleaning up the events, might cause a race | Camiel Dobbelaar | |
otherwise. | |||
2006-10-15 | tweaks; | Jason McIntyre | |
2006-10-15 | Normalize query options: make them not stop the package generation unless | Marc Espie | |
-n is also mentioned. Do some devious speed tricks in case -n && -[qQ] (forgetting to checksum files, for instance), so that it can be used for batch jobs. | |||
2006-10-14 | landisk will need this too | Theo de Raadt | |
2006-10-13 | check error condition of strtonum | Reyk Floeter | |
2006-10-12 | need to call adjtime once in a while here too, otherwise sensor-only | Henning Brauer | |
servers never update the system clock | |||
2006-10-12 | internally, ntpd doesn't work with absolute offsets to system time, but | Henning Brauer | |
takes the offset it adjtime() is already correcting for into account when taking the offset from a sensor, we need to correct it by the offset between system time and ntpd view. | |||
2006-10-11 | use SEEK_SET; chl@tuxfamily.org | Theo de Raadt | |
2006-10-10 | fgets(3) returns NULL on error, not 0. No functional change, but it makes | Chad Loder | |
the code easier to read. OK deraadt | |||
2006-10-08 | use 'weight-value' vs. 'offset' for the weight argument; | Kevin Steves | |
ok jmc@ henning@ | |||
2006-10-03 | strtonum() with INT_MAX intead of LONG_MAX, problem pointed out by ↵ | Theo de Raadt | |
pierre-yves@spootnik.org | |||
2006-09-29 | remove an -O0 workaround for egcs/alpha; noone remembers why it was there | Martin Reindl | |
and alpha is gcc3 now | |||
2006-09-28 | hostapd tree search speedup via inlined compare function | Reyk Floeter | |
suggested by Mike Belopuhov (mkb at crypt dot org dot ru) | |||
2006-09-28 | fix the configuration parser for event rules: correct handling of | Reyk Floeter | |
multiple matches of the 'not' grammar rule and correct 'lladdr' address matching. figured out by Stephen Lewis (stephen at sock dot org dot uk), thanks! | |||
2006-09-27 | Use IP_RECVIF to get the incomming interface of OSPF packets. Now we use | Claudio Jeker | |
the source address and the interface index to find the corresponding struct interface which is less error prone. OK norby@ | |||
2006-09-26 | Sync in_cksum.c to the same version dvmrpd has. This fixes problems with odd | Claudio Jeker | |
packet lenght even though ospfd does not produce such packets. OK norby@ | |||
2006-09-26 | Simplify and make ISO chksum work on big endian machines. | Esben Norby | |
Found by me and corrected by claudio@ during the r2k6. ok claudio@ | |||
2006-09-26 | escape error response to unsupported Expect: header, fixes | Damien Miller | |
CVE-2006-3918; ok cloder@ | |||
2006-09-25 | Use S_IS* macros insted of masking with S_IF* flags. The latter may | Otto Moerbeek | |
have multiple bits set, which leads to surprising results. Spotted by from Paul Stoeber, more to come. ok jaredy@ | |||
2006-09-21 | more lfs removal; ok pedro | Jason McIntyre | |
2006-09-20 | Remove bad144, okay deraadt@ miod@ | Pedro Martelletto | |
2006-09-20 | Make vnd(4) work on read-only file systems, from Paul Stoeber, okay tedu@ | Pedro Martelletto | |
2006-09-19 | enable ESP and AH dissectors over IPv6; ok mpf@ (at k2k6) | Christian Weisgerber | |
2006-09-19 | make buffer_grow always return a valid struct buf; the contained buffer | Henning Brauer | |
might be NULL on realloc failure tho. all users check buffer size before using the buffer, so this is not a problem. makes error handling much easier. ease the capabilities code big time. claudio ok | |||
2006-09-19 | when the neighbor announced the restart capability, send the end-of-rib | Henning Brauer | |
marker after a bulk transfer, claudio ok | |||
2006-09-19 | save the parser state in one big struct, and make it interchangable, aka | Henning Brauer | |
make the parser restartable. with that implement "include" file support. makes life a _lot_ easier with filter generation tools. claudio ok | |||
2006-09-19 | kill useless debug code that somehow snuck in, some 2 years ago... | Henning Brauer | |
2006-09-17 | check that stdio file descriptors are actually closed before clobbering | Damien Miller | |
them, following an identical change in openssh | |||
2006-09-17 | Make rdate ignore ntp responses with ALARM status. | Chris Kuethe | |
"yeah..." henning@ | |||
2006-09-16 | fix error message parsing, okay deraadt@ | Marc Espie | |
2006-09-16 | Only interpret link state routing messages for the monitored carp interface. | Marco Pfatschbacher | |
memcpy the if_msghdr to avoid alignment problems. OK hshoexer@, miod@, deraadt@ | |||
2006-09-16 | sync printing w/ sysctl and also add missing sensor types to the conf ↵ | Michael Shalayeff | |
parser; deraadt@ ok | |||
2006-09-12 | for apps which use interface groups, point to the section of | Jason McIntyre | |
ifconfig(8) where they are explained; ok mcbride mpf henning | |||
2006-09-05 | security update to BIND 9.3.2-P1. ok miod@ and deraadt@ | Jakob Schlyter | |
2006-09-04 | somehow i managed not to commit the macro changes here... | Jason McIntyre | |
2006-09-01 | Teach sasyncd to set isakmpd into active or passive mode, according | Marco Pfatschbacher | |
to our current carp state. Based on a diff by ho@. OK ho@, hshoexer@, deraadt@ |