summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-07-08Disallow manual security associations that use AES-CTR, AES-GCM,Christian Weisgerber
or AES-GMAC. These algorithms cannot be used safely with static keys and RFCs 3686, 4106, and 4543 expressly forbid such configurations. Also include a tweak (with jmc@) to the key size explanation, for completeness sake. ok mikeb@
2012-07-08New attempt to make the -P flag work with -ss, so that states can beLawrence Teo
printed with port names if desired. tcpdump's pf_print_state.c has diverged significantly from pfctl's, so the change to tcpdump's pf_print_state.c is not exactly the same as pfctl's. ok henning sthen
2012-07-08Split out an ask_pid() function rather than over-parameterizing theKenneth R Westerback
ask_num() function. Remove now unneeded 'flags' and 'help' parameters from both. Display out of range values in hex in ask_pid(), since we are seeking hex input. ok guenther@
2012-07-08fix capitalisation of MODMONO_INSTAlL_TARGETStuart Henderson
2012-07-08zap weird precision (if provided) that's not really relevant to anythingMarc Espie
2012-07-08remove extraneous line;Jason McIntyre
2012-07-08kevent(EV_DELETE) shouldn't be calling closef(), as that releases POSIXPhilip Guenthe
file locks. c.f. regress/sys/kern/kqueue/kqueue-flock.c ok krw@
2012-07-08avoid line splitting; also, one an -> aJason McIntyre
2012-07-08Use IO_NOLIMIT instead of munging the process's limitsPhilip Guenthe
ok beck@
2012-07-08implement res_querydomain() required by sendmailEric Faurot
2012-07-08implement -Tman .AnIngo Schwarze
also reset -[no]split mode at .Sh AUTHORS in -Tascii
2012-07-08Instead of casting interface address pointers, use the macros NULLAlexander Bluhm
and ifatoia(). No binary diff. OK blambert@ henning@ claudio@
2012-07-08Don't need to worry about the ATI driver here anymore.Mark Kettenis
2012-07-08Add choose-tree command to show windows and sessions in the sameNicholas Marriott
list. Change choose-window and -session to use the same code. From Thomas Adam.
2012-07-08The algorithm name is "SHA-256" as per FIPS 180-2 (-3).Christian Weisgerber
2012-07-08Switch diff(1) binary file detection from !(isprint() || isspace()) toStefan Sperling
checking for embedded NULs, as was done for grep(1) some time ago. Avoids problems with e.g. latin1-encoded files being treated as binary, since isprint() uses only ASCII by default and diff(1) doesn't call setlocale(). prodded by and ok bluhm
2012-07-08- plug text_to_relayhost() in parse.y to support relay URLs.Gilles Chehade
- document the new URL syntax in smtpd.conf.5 - replace starttls:// schema with tls:// Beware, "relay via" rules should now be expressed with a relay URL: accept [...] relay via "mx1.example.org" smtps port 465 becomes accept [...] relay via "smtps://mx1.example.org" This will allow using mappings of relays with different protocols and options. Make sure to update your smtpd.conf if you relay via ! ok eric, ok chl
2012-07-08Add flags to insert a .sp or .br request before the next output,Ingo Schwarze
shortening some frequent idioms and preparing for better vertical spacing in the SYNOPSIS; no functional change intended.
2012-07-08Sort SRCS list.Nicholas Marriott
2012-07-08Instead of adding one integer variable for each global boolean output flagIngo Schwarze
and passing around a structure containing them into each and every function, just use a single static bitfield. In preparation for adding more output flags to support more features.
2012-07-08Return EROFS when a read-write mount of a read-only sd(4) deviceKenneth R Westerback
is attempted. This is instead of the current EACCES and is intended to result in better error messages from mount(8). Tweak default EROFS error text to mention fsck'ing in mount_ext2fs and mount_msdos since they both have fsck's like ffs. ok deraadt@ aja@ ian@ phessler@
2012-07-08Make hibernate_free() safe to be called even if hibernate areasTheo de Raadt
allocation failed ok mlarkin
2012-07-08implement -Tman .VaIngo Schwarze
and fix -Tman .Vt for the non-SYNOPSIS case
2012-07-08auth_bsd() is staticGilles Chehade
2012-07-08Increase maximum number of tun interfaces to 8.giovanni
ok yasuoka@
2012-07-08add stub function for gethostent(), and move things around a bit while here.Eric Faurot
2012-07-08Add a test for kevent(EV_DELETE) screwing with POSIX file locksPhilip Guenthe
2012-07-08- move some more stuff into OSConfigJasper Lievisse Adriaanse
- zap references to variables that don't exist anymore ok espie@
2012-07-08Call Xsetpid() to edit the partition type from Xedit() rather thanKenneth R Westerback
duplicating the code. Allows simplification of the EDIT() #define in Xedit() since we always ASK_DEC and use a NULL help parameter when invoking ask_num().
2012-07-08Reorganize some hibernate functions for easier readability.Mike Larkin
Fix some incorrect/old comments. ok deraadt@
2012-07-08remove unused functions, ok phesslerStuart Henderson
2012-07-08if you use nitems() in userland, you must define it yourselfTheo de Raadt
discussed with guenther
2012-07-08Enhance the blocking test and add a test for closing while half-openPhilip Guenthe
2012-07-08Nuke useless EDIT() #define in Xsetpid.Kenneth R Westerback
A #define to simplify a function calling snippet does not simply or help when it is used only once.
2012-07-08a -> an in a commentBret Lambert
ok phessler@
2012-07-08preparation for handling permuted optionsMarc Espie
2012-07-08ouch, in the SYNOPSIS, .Vt is a block,Ingo Schwarze
so avoid printing pointless goo in -Tman
2012-07-08implement -Tman .VtIngo Schwarze
2012-07-08Don't hold the fd-table lock across vn_open(), as opening a FIFO may block.Philip Guenthe
Having done that, dupfdopen() has to handle a possible race. ok matthew@ krw@
2012-07-08Add support for advertising dns servers and search paths in routerPeter Hessler
advertisements, according to RFC 6106. original diff from Stephane A. Sezer on tech@, many thanks! OK phessler@, todd@
2012-07-08a few big changesMarc Espie
- start using our options parser for main libtool options - put link related stuff into their own module. Long term, some unification should happen. - shortdie for cases where we know libtool is not at fault.
2012-07-08stupidMarc Espie
2012-07-08Zap extra spaces from function pointer argumentsPhilip Guenthe
Pointed out by Joachim Schipper (joachim at joachimschipper.nl)
2012-07-08Handle the O_ACCMODE bits correctly, so that O_RDONLY is displayedPhilip Guenthe
even when other flag bits are set ok otto@
2012-07-08new sentence, new line;Jason McIntyre
2012-07-08Basic implementation of -Tman .Fo and .Fa;Ingo Schwarze
again, some blank lines still missing from the output. While here, remove the trailing semicolon from .Fn when outside .Sh SYNOPSIS.
2012-07-08Describe tdelete()'s return value correctly and update the related CAVEATPhilip Guenthe
Based on a note from Steffen Daode Nurpmeso (sdaoden at googlemail.com) ok jmc@
2012-07-08specialized option handler that will make things simplerMarc Espie
2012-07-08Replace tricker atoi() and hand rolled parsing with strsep() andKenneth R Westerback
strtonum(). Make related error messages consistant. ok haesbaert@
2012-07-08Move functionality from ask() to _ask() to make the latter more usefulAlexander Hall
from other places. ok krw@