summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-01-25Silence warnings caused by LLVM upgrade.Patrick Wildt
2011-04-24Here comes the easter bunnytils 2.17 (the last version released against aMiod Vallat
licence mere mortals can understand the terms of); will be connected to the build on an arch-by-arch basis. Testsuites and generated files have been intentionnaly omitted from this import. Peer pressure and ok from at least drahn@ pirofti@ deraadt@
2017-01-25+arm64Patrick Wildt
2017-01-25Hopefully the last of the struct rib rototilling. Peer just points to aClaudio Jeker
struct rib and not rib_desc since the full descriptor is almost never needed. This should now allow the update code to be changed.
2017-01-25Provide defines for SSL_CTRL_SET_CURVES/SSL_CTRL_SET_CURVES_LIST for thingsJoel Sing
that are conditioning on these. From BoringSSL. ok beck@
2017-01-25+arm64Theo de Raadt
2017-01-25enter arm64Theo de Raadt
2017-01-25 +arm64Theo de Raadt
2017-01-25Add arm64 to the allarchs target.Patrick Wildt
ok jsg@
2017-01-25Updates to OpenBSD/arm64 install notes.Patrick Wildt
with jsg@
2017-01-25Add the style sheet used on man.openbsd.org to the source tree.Ingo Schwarze
It is NOT used during "make build" and NOT installed, but it is helpful for people trying to read and understand html.c and mdoc_html.c, and maybe even for users of mandoc -Thtml. OK deraadt@
2017-01-25syncPatrick Wildt
2017-01-25Some simple cleanup:Theo Buehler
* check strdup for malloc failure * remove obvious /* NOTREACHED */ * return instead of exit from main * err(1, NULL) instead of err(1, "malloc") * mark usage as __dead ok deraadt
2017-01-25Copy install notes for arm64 from armv7. These still need to bePatrick Wildt
modified to make sense for arm64.
2017-01-25Improve HTML formatting of .Bl -tag.Ingo Schwarze
In particular, when using the style sheet, put the body on the same line as the head for short heads, or on the next line for long heads, in a way that preserves both correct indentation and correct vertical spacing with and without -compact, and with one or more heads per body (hi, Zaphod) - eight use cases so far - and with and without -tag, and with and without -offset, 32 use cases grand total. Using many ideas from zhuk@, from <David dot Dahlberg at fkie dot fraunhofer dot de>, and from Benny Lofgren <bl dash lists at lofgren dot biz>, and a few of my own. This is an excellent demonstration that CSS is an extremely hostile language, much more trapful and much harder to use than, say, C. When matthew@ reported this in July 2014 (!), it was already a known issue, and i no longer remember for how long. My first serious attempt at fixing it (in November 2015) failed miserably. I'd love to see simplifications of both the generated HTML code and of the style sheet, but without breaking any of the 32 use cases, please.
2017-01-25enable BFDPeter Hessler
OK deraadt@
2017-01-25Switch rde_generate_update and rde_send_kroute to accept a struct rib insteadClaudio Jeker
of the id. For this we move the rtableid into struct rib. Also move the update code in rib.c up to where the kroute code is. Makes more senses like that.
2017-01-25Flag the Loc-RIB with F_RIB_LOCAL so we can remove one ugly hack somewhere elseClaudio Jeker
2017-01-24Add -S noverifytime to ftp to permit an unvalidated TLS connection whenBob Beck
you don't knwo what time it is
2017-01-24whitespaceTheo Buehler
2017-01-24Save some space in struct rib_entry so it is back to 64bytes (on 64bit archs).Claudio Jeker
Doing this by folding the lock flag into a pointer and providing an accessor function for the rib pointer. This is an acceptable middle path for this important structure. OK benno@ on an earlier version
2017-01-24make ldso[] const; OK guenther@Todd C. Miller
2017-01-24splsoftnet() to NET_LOCK() in bpfwrite().Martin Pieuchot
ok dlg@, visa@
2017-01-24do not need sys/proc.hTheo de Raadt
2017-01-24add explicit casts for going from volatile void * to void * volatile *.David Gwynne
guenther says void * is less special in c++, and atomic.h now leaks into c++ ports. reported by naddy
2017-01-24Fixed keys for choose mode, and remove the last mode keys bits.Nicholas Marriott
2017-01-24Fix set -u on array options.Nicholas Marriott
2017-01-24Make update-environment an array as well.Nicholas Marriott
2017-01-24Convert terminal-overrides to an array option.Nicholas Marriott
2017-01-24Remove some lies about terminal-overrides from tmux.1.Nicholas Marriott
2017-01-24server-info can become an alias rather than a command.Nicholas Marriott
2017-01-24Add support for custom command aliases, this is an array option whichNicholas Marriott
contains items of the form "alias=command". This is consulted when an unknown command is parsed.
2017-01-24If given an array option without an index either show or set all items,Nicholas Marriott
and support -a for array options. Allow the separator for set to be specified in the options table (will be used for backwards compatibility later).
2017-01-24fix make clean and warningsOtto Moerbeek
2017-01-24make sure realloc preserves dataOtto Moerbeek
2017-01-24use ${.OBJDIR}Otto Moerbeek
2017-01-24BUF_MEM_free(), X509_STORE_free() and X509_VERIFY_PARAM_free() all checkJoel Sing
for NULL, as does lh_free() - do not do the same from the caller.
2017-01-24sk_free() checks for NULL so do not bother doing it from the callers.Joel Sing
2017-01-24sk_pop_free() checks for NULL so do not bother doing it from the callers.Joel Sing
2017-01-24Kill some unused variables found by clang.Rafael Zalamena
2017-01-24Remove some superfluous words and convert Ar VERSION into Va VERSION.Theo Buehler
2017-01-24Tell traceroute6 to choose source address based on correct routingFlorian Obser
table. From dhill, tweeks by me. OK benno
2017-01-24syncTheo de Raadt
2017-01-24Within libssl a SSL_CTX * is referred to as a ctx - fix this forJoel Sing
SSL_CTX_free().
2017-01-24Use the same stack size as on i386Jeremie Courreges-Anglas
ok kettenis@ deraadt@
2017-01-24Make returns consistent and remove parentheses per style(9).Joel Sing
Transformed with coccinelle. Requested by and ok tb@
2017-01-24sort SEE ALSO;Jason McIntyre
2017-01-24Shorten a long line, and don't leak buffer in paste_add if size is zero.Nicholas Marriott
2017-01-24nuke extra brackets. discussed with jsingTheo Buehler
2017-01-24Complete jsing's coccinelle cleanup... by handTheo de Raadt
ok jsing