Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-05-13 | Remove sk from untested section as it is already listed in tested. | Jonathan Gray | |
Same problem as what was pointed out in PR 4203. | |||
2005-05-13 | Do not invoke hil_process_pendinc() from the interrupt handler if the loop | Miod Vallat | |
is marked as busy. | |||
2005-05-13 | Regen | Miod Vallat | |
2005-05-13 | Separate button boxens from keyboards in the HIL device list. | Miod Vallat | |
hilkbd will still match both, but will neither do the auto-layout dance nor attach as console for button boxens. | |||
2005-05-13 | some Xr's from jason ackley; | Jason McIntyre | |
2005-05-13 | The NET_RT_IFLIST sysctl returns RTM_IFINFO and RTM_NEWADDR messages in | Claudio Jeker | |
the buffer. While RTM_IFINFO starts with a struct if_msghdr RTM_NEWADDR does not. In other words (struct sockaddr *)(next + sizeof(ifm)) is only correct for RTM_IFINFO and not for RTM_NEWADDR. So move the ifm_type check up else get_rtaddrs() would access memory outside of buf. OK henning@ | |||
2005-05-13 | The NET_RT_IFLIST sysctl returns RTM_IFINFO and RTM_NEWADDR messages in | Claudio Jeker | |
the buffer. While RTM_IFINFO starts with a struct if_msghdr RTM_NEWADDR does not. In other words (struct sockaddr *)(next + sizeof(ifm)) is only correct for RTM_IFINFO and not for RTM_NEWADDR. So move the ifm_type check up else get_rtaddrs() would access memory outside of buf. OK henning@ | |||
2005-05-13 | Add tests for __strsignal(). Put here since the tests are very similar | Otto Moerbeek | |
to the strerror() test. | |||
2005-05-13 | minor fixes | Jared Yanovich | |
- some strn* to strl* - allocation failure checks - fix overflow in getstring() ok otto, moritz | |||
2005-05-13 | enable spkr by default; ckuethe 4201 | Theo de Raadt | |
2005-05-13 | do { } while (0) wrappers on debug printf macros. ok reyk@ | Jonathan Gray | |
2005-05-13 | sync with ral(4). | Jonathan Gray | |
2005-05-13 | Another ural reported to work by Rodolfo Gouveia. | Jonathan Gray | |
2005-05-13 | move IFQ_SET_MAXLEN to just above IFQ_SET_READY | Brad Smith | |
2005-05-12 | add CF_NOFILES flag | Joris Vink | |
2005-05-12 | set cvsent to NULL if entfile is NULL, fixes a crash | Joris Vink | |
in cvs_file_lget(). | |||
2005-05-12 | add CF_KNOWN and CF_NOFILES flags; joris ok | Xavier Santolaria | |
2005-05-12 | introduce a new flag to the file api: CF_NOFILES, which allows us | Joris Vink | |
to only load directories and skip regular files. tested and ok xsa@ | |||
2005-05-12 | sync | Theo de Raadt | |
2005-05-12 | snprintf checks; joris ok | Xavier Santolaria | |
2005-05-12 | tweaks; | Jason McIntyre | |
2005-05-12 | Calculate routes for summary and as-external LSA. Still some minor parts | Claudio Jeker | |
missing but good enough to be used. Tested and some input by Stephen Marley. OK norby@ | |||
2005-05-12 | lsa_age() the vertex befor comparing the age with MAX_AGE. | Claudio Jeker | |
Move a common check (cost == LS_INFINITY) out of the switch cases. OK norby@ | |||
2005-05-12 | Every time a LSA is returned from a lookup lsa_age() it. | Claudio Jeker | |
Also move the lsa_age() prototype to rde.h so that we can access it from the SPF code. OK norby@ | |||
2005-05-12 | Don't fatal in case no root node was found for spf calculation. | Claudio Jeker | |
The area may be empty because there is no active interface. OK norby@ | |||
2005-05-12 | Reflect reality. | Esben Norby | |
2005-05-12 | Add "show database asbr/external/network/router/self-originate/summary" | Esben Norby | |
to ospfctl. Show detailed information about the LSAs in the Link State Database. ok claudio@ | |||
2005-05-12 | fix segfault in cvs_resp_error() | Joris Vink | |
2005-05-12 | ANSIfy, some KNF and zap a little bit of whitespace. | Niall O'Higgins | |
No binary changes. ok mickey@ | |||
2005-05-12 | sync | Theo de Raadt | |
2005-05-12 | airprime and sealevel | Theo de Raadt | |
2005-05-12 | Regen | Miod Vallat | |
2005-05-12 | Populate \t better in the output, for human readability; no change in the | Miod Vallat | |
map themselves. | |||
2005-05-12 | Add a bzero() after malloc() when allocating component info in ccdinit(). | Niall O'Higgins | |
This fixes a panic in ccd(4) mirroring where the second component could be wrongly treated as failed, which leads to uvm_fault in write operation. ok mickey@ | |||
2005-05-12 | make functions static; joris ok | Xavier Santolaria | |
2005-05-12 | Fix multiple bugs in if_act_elect(). In some cases DR were set wrongly | Claudio Jeker | |
because of a stupid typo that I fixed in rev. 1.6 but forgot to fix the bug I introduced before because of that typo. Also reset the DR/BDR fields of iface->self when going to round two. Without the reset it is e.g. not possible to drop from DR to BDR. Issue found and patch tested by Stephen Marley OK norby@ | |||
2005-05-12 | Document pt.apple layout. | Miod Vallat | |
2005-05-12 | Regen | Miod Vallat | |
2005-05-12 | Define a specific map for the Apple portuguese USB keyboards. | Miod Vallat | |
Based on input from Manuel Pata and Rodolfo Gouveia on tech@. | |||
2005-05-12 | Define a keyboard layout variant for Apple international USB keyboards, which | Miod Vallat | |
sometimes sligthly differ from the canonical layout. | |||
2005-05-12 | .Xr script 7 | Jason McIntyre | |
2005-05-12 | add script(7): interpreter script execution; | Jason McIntyre | |
from netbsd; some tidy up from jaredy@, otto@, and myself; | |||
2005-05-12 | If activly connected to more than one area set B flag in the self-originated | Claudio Jeker | |
router LSA. To do that correctly we need to track the number of active neighbors for each area. If the routers ABR status changes all router LSA need to be updated via orig_rtr_lsa_all(). OK norby@ | |||
2005-05-12 | Xr securelevel 7 | Jason McIntyre | |
from tamas tevesz; | |||
2005-05-12 | change pfctl reference to pf, since programs like authpf also attempt to | Jason McIntyre | |
alter rulesets, not just pfctl interface; from tamas tevesz; | |||
2005-05-12 | add some missing section descriptions to make this page a little | Jason McIntyre | |
easier to read; ok hshoexer@ | |||
2005-05-12 | credit .Bx 3 in HISTORY too; | Jason McIntyre | |
agreed w/ otto@ | |||
2005-05-12 | remove unsupported LIBRARY section; | Jason McIntyre | |
2005-05-12 | Minimal terminal line discipline support to stop the boot timeout | Uwe Stuehler | |
after the first keystroke, as on other platforms. | |||
2005-05-12 | borrow some from hppa | Michael Shalayeff | |