Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-01-20 | - tyop, recieve -> receive | Jasper Lievisse Adriaanse | |
ok sthen@ | |||
2011-01-20 | - remove some dead code, since we #define something and test for it on the next | Jasper Lievisse Adriaanse | |
line, the #else part can go. ok miod@ | |||
2011-01-20 | When finding the roff .it request (line trap), | Ingo Schwarze | |
make it clear that you cannot use mandoc to format that page (yet). Triggered by a report from brad@. | |||
2011-01-20 | add IT8721 support | Oleg Safiullin | |
2011-01-20 | The reason accounting in pf_reassemble() was not correct. Change | Alexander Bluhm | |
pf_reassemble() to return PF_DROP or PF_PASS and *m0 is NULL or the reassembled packet. In case of PF_DROP, the mbuf must be valid, e.g. for logging, and will be freed later. In case the reassembled packet is too big, use the reassembled mbuf for PF_DROP. ok henning@ markus@ | |||
2011-01-20 | more double word removal; | Jason McIntyre | |
2011-01-20 | a a -> a | lum | |
ok jmc@ | |||
2011-01-20 | Fix an example using rdr-to where a couple of hosts were exempted from | Stuart Henderson | |
the redirect; the sample rule used "match" for the general case which negated the exemptions. From Harald Dunkel. | |||
2011-01-19 | group filesystems together | Thordur I. Bjornsson | |
ok miod@ | |||
2011-01-19 | add ldapd.conf; ok sthen@ | David Krause | |
2011-01-19 | catch up changelist with recent additions; ok sthen@ | David Krause | |
2011-01-19 | Fix typo, %F pattern corresponds to %Y-%m-%d (the ISO 8601 date format), | Landry Breuil | |
not %Y/%m/%d. Found while debugging geo/gpx-viewer. ok millert@ jasper@ | |||
2011-01-19 | patch from Henri Kemppainen: | Kjell Wooding | |
clean up undo boundaries for functions in random.c This catches an error, where twiddling in an empty file could disable undo boundaries for the rest of the session. proper undo boundaries around newline() will have to wait until proper reference counting is done... Thanks! | |||
2011-01-19 | ansify; ok millert@ | Okan Demirmen | |
2011-01-19 | - missing leading '.' before 'It'. | Jasper Lievisse Adriaanse | |
spotted by landry@ | |||
2011-01-19 | Give pf_normalize_ip() the same 3 way semantics as pf_test(). | Alexander Bluhm | |
- PF_DROP, the packet is bad, the mbuf still exists and must be freed. - PF_PASS and *m0 is NULL, the packet has been processed, not an error. - PF_PASS and *m0 is not NULL, continue with packet processing. This fixes a potential mbuf use after free. ok henning@ markus@ mpf@ | |||
2011-01-19 | - regen | Jasper Lievisse Adriaanse | |
2011-01-19 | - fix Radeon HD 3870 audio entry, from Greg Jones. | Jasper Lievisse Adriaanse | |
2011-01-19 | Add 2001:2::/48 (prefix used for benchmarking) to the list of | Claudio Jeker | |
non-routeable prefixes. While there sort list. Diff provided by Andre Keller. | |||
2011-01-19 | remove EOL whitespace | David Krause | |
2011-01-19 | sort entries | David Krause | |
2011-01-19 | update location of host.random: it moved from /etc to /var/db in 1999... | David Krause | |
2011-01-18 | When fixing conflicts make sure the right vertex is passed to lsa_merge() | Claudio Jeker | |
so that the correct sequence number is used for the LSA. So re-lookup the vertex before calling lsa_merge(). Problem found and diff OK bluhm@ | |||
2011-01-18 | When changing the ifa_broadaddr broadcast address, ifa_update_broadaddr() | Alexander Bluhm | |
copied the pointer to the sockaddr instead of the content of sockaddr_in. As the source of the data resides on the stack, the pointer got invalid later and the kernel crashed. As only addresses with fixed size are used, sa_len bytes of the sockaddr can be coppied. ok krw@ markus@ mpf@ claudio@ henning@ | |||
2011-01-18 | Merge a change from ncurses upstream to correctly recalculate a form | Nicholas Marriott | |
field size on set. Fixes an issue found by canacar@ who provided a similar fix. ok canacar | |||
2011-01-18 | new sentence, new line; | Jason McIntyre | |
2011-01-18 | Add missing prototypes and move dired.c to "extensions" in Makefile. | lum | |
ok kjell@ | |||
2011-01-18 | augbname immediately does a basename. No need to do it in the | Kjell Wooding | |
caller, too. ok lum@ | |||
2011-01-18 | Obvious error on my part. | Kjell Wooding | |
test len against INT_MAX, not SIZE_MAX. 'looks good' jasper@ | |||
2011-01-18 | Add join-line, bound to M-^ | Kjell Wooding | |
Join the current line to the previous. original diff by Henri Kemppainen. minor mod to add undo boundaries. Thanks! | |||
2011-01-18 | Quiet a gcc warning | Todd C. Miller | |
2011-01-18 | Our crontab(1) hasn't used SIGUSR1 to signal cron in years, we now use | Todd C. Miller | |
a Unix domain socket to trigger a reload. | |||
2011-01-18 | - regen after grange's last commit. | Jasper Lievisse Adriaanse | |
2011-01-18 | reyk noticed that my rb-tree-fu is not that great. fixup compare function | Mike Belopuhov | |
to do exact matches; ok reyk | |||
2011-01-18 | Another ati and nvidia video from yason@linklevel.net | Alexander Yurchenko | |
2011-01-18 | Remove one of the three occurances of "delay is 5 seconds" | lum | |
ok jmc@ | |||
2011-01-17 | silence stupid gcc warning by initializing a variable with NULL. | Reyk Floeter | |
2011-01-17 | Add initial acquire mode support and use it whenever Windows peers decide | Mike Belopuhov | |
to drop Child SA based on the inactivity timer. In this case we instruct the kernel to send us an acquire message upon receiving a packet for those hosts and initiate a Child SA creation exchange ourselves. ok reyk | |||
2011-01-17 | Fix redistribution of overlapping routes (e.g 10/8 and 10.0/16). | Claudio Jeker | |
Select a different LS ID in case of a conflict. The most specific route keeps the LS ID the others will try their broadcast addr first and then count down. The redistributed asext LSA are now stored in a RB tree to make this all work. Tested by a few people no problems seen so far. | |||
2011-01-17 | move mask2prefixlen functions to the util module; ok reyk | Mike Belopuhov | |
2011-01-17 | Refactor ldap searches for passwd and group queries into a common | Martin Hedenfal | |
client_search_idm function. ok pyr@ | |||
2011-01-17 | extract common code for building the idm_req struct for passwords | Martin Hedenfal | |
and groups in a new function client_build_req ok pyr@ CV: ---------------------------------------------------------------------- | |||
2011-01-17 | Adjust IPKTS and OPKTS description to fit actual behaviour. | lum | |
ok jmc@ | |||
2011-01-17 | sync | Kevin Lo | |
2011-01-17 | Add the Moschip mcs7832; from Brad | Kevin Lo | |
2011-01-17 | sync | Kevin Lo | |
2011-01-17 | Add id for Broadcom BCM57712; from Brad | Kevin Lo | |
Add the RDC R1011 IDE controller | |||
2011-01-17 | Add back-to-indentation. (M-m) | Kjell Wooding | |
Move the dot to the first non-whitespace character on the current line. from Henri Kemppainen . ok theo | |||
2011-01-17 | Refrain from throwing fatal errors for | Ingo Schwarze | |
* .br .sp .nf .fi .na with arguments - just skip the arguments * .TH lacking arguments - use empty strings instead like groff * .TH with excessive arguments - skip those Reminded by Joerg Sonnenberger, ok kristaps@. | |||
2011-01-16 | explain various points in more detail, and some in easier or | Ingo Schwarze | |
more standard ways; ok jmc@ ajacoutot@ robert@ |