summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-11-06Let -Tascii \(bu (bullet) output agree with groff;Ingo Schwarze
this is now possible because -Tps now handles backspace overstriking.
2014-11-06fixup argv handling after getopt conversion. oops.Ted Unangst
2014-11-06-l option to create "modern" 80 column cardsTed Unangst
2014-11-06basic decode functionalityTed Unangst
2014-11-06printf debugging worked! figured out the bug (in free()) just afterTed Unangst
committing the printfs. revert.
2014-11-06need to calculate correct size before doing the free checks. the biggestTed Unangst
malloc bucket isn't precise, it can have anything in it. should fix recent panics. sorry for inconvenience. ok deraadt millert
2014-11-06Make better use of the value of psectionslen instead of recomputingTodd C. Miller
it multiple times. Also remove an unused variable. OK deraadt@ tedu@
2014-11-06resort to printf debugging hints until we can figure this out. ok deraadtTed Unangst
2014-11-06TLS is pretty boring without TLS extensions... unifdef OPENSSL_NO_TLSEXT,Joel Sing
which was already done for libssl some time back.
2014-11-06fix mac address selection with unnumbered carpdevsHenning Brauer
IP-traffic over a carp interface with the underlaying carpdev being unnumbered (in the numbered case usually the ifp is the carpdev to begin with) went out with the carpdev's mac address istead of the carp interface's one due to a carp hack in ether_output exchanging the carp ifp for its carpdev ones one. move the source mac selection to before that. fixes unnumbered carp use in environments with strict mac address regimes like some exchange points. issue found by your's truly the hard way. ok mpi dlg
2014-11-06ssl_sock_init() does nothing, so remove it...Joel Sing
2014-11-06i renamed the mbuf pool.David Gwynne
2014-11-06Let's just call a rdomain a rdomain.Martin Pieuchot
ok dlg@
2014-11-06Clean up unused header files and docs referring to them.Anthony J. Bentley
From Martin Natano. ok nicm@
2014-11-06Wrap when copy mode is used for output, from Balazs Kezes.Nicholas Marriott
2014-11-06Remove old curses support in vi.Anthony J. Bentley
ok nicm@ millert@ plus a comment tweak from nicm@
2014-11-06Add V for select line with vi(1) keys. From Juho Pohjala.Nicholas Marriott
2014-11-06since domain appending is handled at the daemon level, don't try to do itGilles Chehade
in the enqueuer itself, it leads to broken headers
2014-11-06mix the rtable into the hash for tcp sequence number generation.David Gwynne
ok tedu@ claudio@
2014-11-06Cleanup whitespace and add 5 series comments.Doug Hogan
ok mlarkin@
2014-11-06Add the required includes for the conditional parts ofJonathan Gray
struct vga_pci_softc in vga_pcivar.h Original diff from guenther@ changed to incorporate feedback from kettenis@ and myself.
2014-11-06Remove unneeded netinet6/ip6_divert.h include.Lawrence Teo
ok bluhm@ dlg@ florian@ mpi@
2014-11-06let ramdisks compileTheo de Raadt
2014-11-05Tidy up mode-mouse check.Nicholas Marriott
2014-11-05Do not put a space between status-left/status-right and the window list,Nicholas Marriott
instead move the space into the defaults for the options (so status-left now defaults to "[#S] ". From Balazs Kezes.
2014-11-05need to move lock up to prevent more than one malloc. ok guentherTed Unangst
2014-11-05missing pfd = newp, diagnosed by deraadt@Stuart Henderson
2014-11-05don't deref timeout if null. from theo buehler.Ted Unangst
2014-11-05stop prepending the user id in local enqueuing Received lineGilles Chehade
2014-11-05syncTheo de Raadt
2014-11-05don't use loop variable (i) for not loop things. use a new var.Ted Unangst
2014-11-05use memname to print string of type. stolen from deraadtTed Unangst
2014-11-05also print type when free size is wrongTed Unangst
2014-11-05When clearing /tmp, use "-maxdepth -1" instead of "-type d -prune".Todd C. Miller
This is easier to understand and fixes a bug where the "-type d -prune" was misplaced as noticed by pirofti@. OK deraadt@
2014-11-05Implement yet another workaround for the k1 em(4)'s. This time forClaudio Jeker
the i218 which is used in many modern laptops like the X240. This seems to stop the watchdog timeouts triggered by heavy traffic on such systems. Tested by myself, phessler, blambert and Donovan Watteau OK deraadt, brad
2014-11-05edns0 is not currently supported: confirmed by sthen and ericJason McIntyre
diff From: Mike Burns (though my fix differs a bit)
2014-11-05Did you ever wonder why loopback's ifas have a destination address?Martin Pieuchot
It is of course not to make your life more complicated when you are dealing with ifa_ifwithaddr()! It was to reuse the point-to-point code to add a route to 127.0.0.1. But now we have local routes and we don't need this hack anymore :) ok mikeb@ as part of a larger diff.
2014-11-05Kill in_iawithaddr() and use ifa_ifwithaddr() directly.Martin Pieuchot
Note that ifa_ifwithaddr() might return a broadcast address, so if you don't want one make sure to filter them out. ok mikeb@
2014-11-05syncTheo de Raadt
2014-11-05remove uneeded bpf includesJonathan Gray
ok miod@
2014-11-05zap double word;Jason McIntyre
2014-11-05some minor tweaks;Jason McIntyre
2014-11-05No reason to have things like the hibernate allocation area and chunkMike Larkin
ordering regions mapped executable, so remove those permissions. ok deraadt@
2014-11-05Map .rodata RO after boot on amd64. Makefile.amd64 changes from deraadt.Mike Larkin
ok deraadt@
2014-11-05Functions that say they return void should not try to return something.Daniel Dickman
ok deraadt@ "Even though I admire the chutzpah of return(void), I agree". ok krw@
2014-11-05i forgot the :wq bit after applying jmcs tweaks.David Gwynne
2014-11-05change the mbuf pool wait channel name from mbpl to mbufpl. "mb"David Gwynne
isnt descriptive enough for me. ok deraadt@
2014-11-05Convert EXAMPLES to IDIOMS and make it a simple select -> pollTodd C. Miller
conversion along with commentary. A more comprehensive sample conversion is needed too. OK deraadt@
2014-11-04document the SipHash24 api. some more could be done for history andDavid Gwynne
where its appropriate to use it, but that can happen later. discussed with djm@ tweaks from jmc@
2014-11-04explicitly clarify that reading also stops after size-1 bytesTed Unangst