Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-01-26 | Handle CVS/Entries and file timestamp correctly so we do | Joris Vink | |
not mistakenly see a file as Modified while it is not. As a result, we can remove the very hackish cvs_hack_time() and GNU cvs and opencvs should almost get along now. lotsa help and okay The otto@ | |||
2007-01-26 | remove ancient device-specific trick from ffs1_blkpref() | Pedro Martelletto | |
okay toby@ millert@ | |||
2007-01-26 | When switching mode inherit the TUN_NBIO and TUN_ASYNC flags and clear | Claudio Jeker | |
these flags on close. OK mpf@ | |||
2007-01-26 | respect umask; ok joris@ | Otto Moerbeek | |
2007-01-26 | Sync with ospfctl/bgpctl: detect missing arguments. OK michele@ | Claudio Jeker | |
2007-01-26 | sync | Peter Valchev | |
2007-01-26 | sync | Peter Valchev | |
2007-01-26 | Sync with ospfctl/bgpctl: correctly detect missing arguments. OK norby@ | Claudio Jeker | |
2007-01-26 | modestring can be 18 long | Otto Moerbeek | |
2007-01-26 | extra xfree leftover; from tbert. | Otto Moerbeek | |
2007-01-26 | As per PCI specs, disable an adapter's transaction response while | Marc Aurele La France | |
sizing its BARs. tested niallo@, tsi@, ian@, mk@, sturm@, kettenis@, krw@, beck@, drahn@ ok beck@, kettenis@, drahn@ | |||
2007-01-26 | printf(9) %b is not limited to 32 bits or less... document it. | Jason Wright | |
2007-01-25 | when acting as a server - immediatly after we checkout a file | Joris Vink | |
remove its temp copy so our worklist doesnt contain a bazillion entries when checking out src. as a result, we now use very little memory in server mode. found and tested by otto@ ok cool and the gang. | |||
2007-01-25 | zap uneeded close() calls after fclose(); pointed out by and OK otto@. | Xavier Santolaria | |
2007-01-25 | Be a bit more verbose during attach even without ACPI_DEBUG for now. | Michael Knudsen | |
2007-01-25 | Install an indicator sensor to show if we're docked or not. | Michael Knudsen | |
Note that right now status appears to not be detected correctly on all machines, but let's expose what we think we know. | |||
2007-01-25 | Make debug output a tad more consistent. | Michael Knudsen | |
2007-01-25 | Remove comment that I committed by accident. | Michael Knudsen | |
2007-01-25 | return 0, not NULL in a function returning int. | Niall O'Higgins | |
ok pyr@ | |||
2007-01-25 | plug a leak if multiple expansions are done on a single line. ok | Otto Moerbeek | |
niallo@ | |||
2007-01-25 | Correctly detect missing arguments. Same diff as in ospfctl. OK henning@ | Claudio Jeker | |
2007-01-25 | use more stack allocations for fixed size buffers. ok xsa@ joris@ | Otto Moerbeek | |
2007-01-25 | plug a memleak in keyword expansion. | Niall O'Higgins | |
ok joris@ | |||
2007-01-25 | No need to check if word is NULL before calling parse_addr/prefix. | Claudio Jeker | |
The functions do that check already. | |||
2007-01-25 | Correctly detect missing arguments like in "ospfctl show data area". | Claudio Jeker | |
OK henning@ norby@ | |||
2007-01-25 | typo in error message. | Xavier Santolaria | |
2007-01-25 | do not use strlcpuy on a buffer filled by fgetln, since fgetln does | Otto Moerbeek | |
not NUL-terminate. ok xsa@ | |||
2007-01-25 | resolve conflicts with 9.3.4; SECURITY UPDATE | Jakob Schlyter | |
2007-01-25 | Do the sensor magic correctly. Found by Constantine Murenin. | Marco Peereboom | |
help from mickey | |||
2007-01-25 | ISC BIND release 9.3.4 | Jakob Schlyter | |
2007-01-25 | plug a mem leak and wrong usage of strlcpy after fgetln. since fgetln | Otto Moerbeek | |
does not NUL-terminate, it is not ok to use strlcpy on the buffer. ok opencvsgang@ | |||
2007-01-25 | Cleanup some more code. Eliminate dhcp(), bootp(), parse_options() by | Kenneth R Westerback | |
moving the minimal code into do_packet(). Eliminate repeated code for checking the client hardware address and the reject list by putting those checks into do_packet as well. No functional change, just much easier to read. ok stevesk@ | |||
2007-01-25 | Move paragraphs unrelated to bfname out of this list item. | Alexander Bluhm | |
ok millert jmc | |||
2007-01-24 | build and install landisk man8 specific manpages | Martin Reindl | |
2007-01-24 | +.Xr csplit 1 , | Jason McIntyre | |
from Matthias Kilian; | |||
2007-01-24 | user proper format string for size_t; file size is off_t; ok joris@ | Otto Moerbeek | |
2007-01-24 | Deal with weird systems that return bogus device numbers for stuff that's not | Mark Kettenis | |
really there. | |||
2007-01-24 | Actually establish interrupt handler in !ioapic_cold case. | Mark Kettenis | |
ok marco@ | |||
2007-01-24 | Check nioapics to see whether we're using I/O APICs. | Mark Kettenis | |
ok marco@ | |||
2007-01-24 | The example is not correct and uses non-idiomatic scripting. So fix it. | Otto Moerbeek | |
ok espie@ | |||
2007-01-24 | revert changes committed between r1.25 and 1.26. | Damien Bergamini | |
this breaks some RT2560 adapters. pointed out by krw@ and Pierre Riteau. | |||
2007-01-24 | When deleting a neighbor or a interface make sure that no events are pending. | Claudio Jeker | |
Needed for reload support. OK norby@ | |||
2007-01-24 | terminate CVS/Entries with a newline. | Pierre-Yves Ritschard | |
ok joris@, xsa@ | |||
2007-01-24 | A reallocated root directory gets ownership of the fsck process. | Alexander Bluhm | |
If lost+found is created, it gets ownership of the root directory. ok pedro | |||
2007-01-24 | Lock the nexthop while parsing an update by increasing the reference count. | Claudio Jeker | |
This is needed because the nexthop is not yet linked to the aspath attributes and so a withdraw in the same update imsg could remove this nexthop which in turn causes a use after free error when the prefix is added later on. The order of parsing (attributes, withdraws, prefixes instead of withdraws, attributes, prefixes) was reversed for multiprotocol support. This should fix all strange nexthop crashes seen by various people. Tested and OK henning@ | |||
2007-01-24 | Remove most of the spf calculation related log_debug messages. | Claudio Jeker | |
2007-01-24 | +.Xr gzip 1 | Jason McIntyre | |
2007-01-24 | split compress(1) into compress(1) and gzip(1), as suggested by millert; | Jason McIntyre | |
ok/help millert otto | |||
2007-01-24 | Remove some log_debug()s that are no longer needed. | Claudio Jeker | |
2007-01-24 | Similar to ospfd and ripd ignore SIGPIPE in all processes to be able to do | Claudio Jeker | |
a nice exit in case one of the processes dies. OK pyr@ |