summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-07-09Properly detect if a patch already has been applied, even if thereOtto Moerbeek
are no eols at eofs involved. Tested by quite some people. ok deraadt@
2004-07-09brings in a few fixes from NetBSD...Brad Smith
- fix typo in comment: resister -> register - Remove an unreachable return statement (and fix a whitespace nit) - Fix some DPRINTF statements to deal with bus_addr_t and bus_size_t types defined in terms if 'int' instead of 'long'. - use u_long for extent_alloc_subregion result instead of bus_addr_t ok deraadt@
2004-07-09Do not compile non-us keyboard tables on alpha if SMALL_KERNEL, as anMiod Vallat
expedient to s(h)ave more bytes on the installation media. Prompted by deraadt@
2004-07-09add section on ntpd;Jason McIntyre
ok henning@ deraadt@
2004-07-09variety of cleanups; nofsk@aanet.com.au and ITheo de Raadt
2004-07-09You can only use strlcpy() on real C strings, which lf->buffer is not.Todd C. Miller
Use memcpy() instead and NUL terminate.
2004-07-09post-mortem stuff can go away here tooTheo de Raadt
2004-07-09remove post-mortem stuff (sysctl only here)Theo de Raadt
2004-07-09ansiTheo de Raadt
2004-07-09ansiTheo de Raadt
2004-07-09ansiTheo de Raadt
2004-07-09ansi; khalek@linuxgamers.netTheo de Raadt
2004-07-09qbus vector counting, too; from hughTheo de Raadt
2004-07-09too chatty; ok henningTheo de Raadt
2004-07-09don't panic when sendto() fails; for the client part just re-scheduleHenning Brauer
noticed & fix tested by fries@
2004-07-09don't try to update the clock when we have no dataHenning Brauer
2004-07-09various cleanup:Jared Yanovich
- mention '#' comments - fix macros for directives - typos - change list display - ntp -> NTP - slight rewording help and ok jmc ok henning otto
2004-07-09when saving a file, check whether it is newline terminated and if it is not,Vincent Labrecque
prompt the user and add the newline if he agrees. tested by a lot of helpful tech@ guys, approved by henning
2004-07-09the child process needs to ignore SIGHUP for now, ottoHenning Brauer
2004-07-09remove leftover pieces of on-the-fly reconfig shitz that made ntpd exit onHenning Brauer
SIGHUP, noticed by otto
2004-07-09various tweaks from the Frankfurt->Hamburg flightHenning Brauer
2004-07-09let log_debug only log at all when we're in debug mode, from Montreal AirportHenning Brauer
2004-07-09soem tweaks from the Frankfurt->Hamburg flightHenning Brauer
2004-07-09it is "servers" now for pool.ntp.orgHenning Brauer
2004-07-09document the "servers" keywordHenning Brauer
2004-07-09rework dns handling with all its cosequences...Henning Brauer
we know have both a "server" and "servers" keyword. they differ when the hostname resolves to more than one IP, server picks one and servers expands to all. that means no longer stuffing a sockaddr_storage into ntp_peer but a pointer to a linked list of ntp_addr structs. in the "servers" case the list of n addresses returned by host() is expanded into n ntp_peer structs and thus n individual peers. in the "server" case the whole list is attached to ntp_peer, and whenever we do not receive a reply in time we traverse the list one further, so that hosts with both AAAA and A records are first tried with the AAAA one but we gracefully fall back to the A one. semantics with theo; hacked up on the Montreal->Frankfurt flight. again Air Canada surprised me, that older 767 hat pretty decent seats.
2004-07-09typo from rohee@Jason McIntyre
2004-07-09when calculating the timeout for poll() we need to take the deadlines forHenning Brauer
the outstanding queries into account just-before-meal from the Montreal->Frankfurt flight
2004-07-09typo. Bruno RoheeJun-ichiro itojun Hagino
2004-07-09go away staticsNiklas Hallqvist
2004-07-08Make 0/0 table entries work; also fix a problem setting the network maskRyan Thomas McBride
on v6 addresses. Reported by Ilya A. Kovalenko, fix from Cedric Berger.
2004-07-08put "do { } while (0)" wrappers on all the debug maroc functionsTheo de Raadt
2004-07-08put "do { } while (0)" wrappers on all the debug maroc functionsTheo de Raadt
2004-07-08make lint happier; vincent okTheo de Raadt
2004-07-08misplaced return NULL in the error pathVincent Labrecque
found by lint via deraadt ok deraadt
2004-07-08POSIX says "data" is void *, not char *. Also remove extern from prototypes.Todd C. Miller
deraadt@ OK
2004-07-08simplify the file writing loopVincent Labrecque
looked at by ian, tested on i386, macppc, sparc64
2004-07-08free() and close() in error path.Hans-Joerg Hoexer
ok ho@
2004-07-08we don't care about copyout's success. add a comment to appease sturm@Ted Unangst
2004-07-08kill traces of on-the-fly reconfigure (from bgpd), not needed in ntpdHenning Brauer
2004-07-08remove a bogus always-true test before adjtime()Henning Brauer
2004-07-08Move carp_output() call to after mcopy of MAC address so the virtual addressRyan Thomas McBride
does not get overwritten. Report and fix from Chris Pascoe.
2004-07-08Regress test for bz #863 (scp double-error), requires $SUDO. ok markus@Darren Tucker
2004-07-08Prevent rcp from skipping the file following a double-error. Matches scp.cDarren Tucker
rev 1.116, prompted by & ok markus@
2004-07-08Prevent scp from skipping the file following a double-error.Darren Tucker
bz #863, ok markus@
2004-07-08change `Mail aliases' entry to minimise config for user;Jason McIntyre
ok millert@
2004-07-08clarify which of the rc.* files should/should not be edited;Jason McIntyre
- remove redundant (duplicate) section in afterboot(8) - limit rc(8) SYNOPSIS to what the page actually describes - grammar, formatting, etc. - add FILES to rc(8) - add securelevel(7) .Xr to SEE ALSO in rc(8) requested by and ok henning@
2004-07-08typo, and line adjustment;Jason McIntyre
2004-07-08Sync libkvm interface with FSF repository. This adds new "kvm proc" andMark Kettenis
"kvm pcb" commands. ok deraadt@
2004-07-08Don't close the database too early. ok deraadt@, millert@.Matthieu Herrb