summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2014-10-06Amend previous commit to unbreak TLS cert validation when using a proxy.Jeremie Courreges-Anglas
ok miod@
2014-10-06correct options in usage(); from mancha1 AT zoho.comDamien Miller
2014-10-04Be sure to only path the remote host to ressl_connect_socket(), without aMiod Vallat
possible :portnumber suffix. Noticed by ajacoutot@ ok ajacoutot@ deraadt@
2014-10-03update for new ressl noverify APITed Unangst
2014-10-03Update ftp ressl configuration to handle recent changes in the library.Joel Sing
2014-10-02Top function key is F12 now.Nicholas Marriott
2014-10-02Take account of window-status-separator when checking window position,Nicholas Marriott
based on diff from Balazs Kezes.
2014-10-02Update status when pane selected with mouse, from Balazs Kezes.Nicholas Marriott
2014-10-02Copy ACS characters as UTF-8, from Balazs Kezes.Nicholas Marriott
2014-10-02exit in usage functions themselves; from Fritjof Bornebusch; ok nicm@Otto Moerbeek
2014-10-01Call waitpid on SIGCHLD even if client not attached, it is possible (onNicholas Marriott
very slow platforms) for the first daemon() child to still be running when client_attached is set so we end up with a zombie. From J Raynor.
2014-10-01update currency exchange rates;Jason McIntyre
2014-10-01Switch "openssl req" to using SHA256 for hashes and AES256 to encrypt on-diskStuart Henderson
keys by default (instead of SHA1/3DES) and update documentation to match. Another way to do this is s/NID_sha1/NID_sha256/ in src/crypto/rsa/rsa_ameth.c ("case ASN1_PKEY_CTRL_DEFAULT_MD_NID") but going with the more targetted method above that only affects "openssl req" for now. Help/OK jsing@. OKs on earlier diffs changing openssl.cnf from phessler@ aja@
2014-09-30atoi to strtonum; from Fritjof Bornebusch; ok nicm@Otto Moerbeek
2014-09-29Merge conflicts.James Turner
2014-09-29When setting environment variables in the atrun script, use theTodd C. Miller
"export foo=bar" form instead of "foo=bar; export foo" since the former allows the shell to catch variable names that are not valid shell identifiers. This will cause /bin/sh to exit with an error (which gets mailed to the at user) and it will not run the script. OK miod@
2014-09-27Use %zu where appropriate, from Fritjof Bornebusch.Otto Moerbeek
2014-09-27sound reasoningSebastian Benoit
2014-09-25Support using pane id as part of session or window specifier (so %1Nicholas Marriott
means session-of-%1 or window-of-%1) and window id as part of session (so @1 means session-of-@1).
2014-09-25Support ! for last pane.Nicholas Marriott
2014-09-23Hide unused, duplicate and/or misleading fields.Alexandre Ratchov
ok armani, shadchin, kspillner
2014-09-21plug a small memory leak, fairly infrequent.Marc Espie
2014-09-21Fix an invalid escape sequence.Daniel Dickman
ok nicm@
2014-09-17simplify handling of .An -[no]split for terminal output:Ingo Schwarze
delete one static function, one flag #define, and 25 lines of code; no functional change
2014-09-17implement .An -[no]split for -ThtmlIngo Schwarze
2014-09-17Add display of the flags to pipe2, dup3, and accept4, display ofPhilip Guenther
MSG_CMSG_CLOEXEC in recvmsg, and display of SOCK_{CLOEXEC,NONBLOCK} in socket and socketpair. Do _not_ display the O_ACCMODE bits in the arg to fcntl(F_SETFD) ok miod@
2014-09-17Increase number of blowfish rounds to 8 by default when not specified inKent R. Spillner
login.conf. ok deraadt@ doug@ millert@ "please commit" tedu@
2014-09-17Fix some comments (c -> colour) and join unnecessary line splits.Nicholas Marriott
2014-09-17Remove unused #define.Lawrence Teo
ok jsing@
2014-09-17try to document that the -1 option will be selected by default if moreDavid Gwynne
than 8 cpus are detected in the system.
2014-09-17be more explicit about what '1' toggles betweenDavid Gwynne
2014-09-17if there are more than 8 cpus, default to combined cpu stats (likeDavid Gwynne
you passed -1 on the command line). ok kettenis@ tedu@
2014-09-16less sendmail specific; ok millertJason McIntyre
2014-09-16sendmail -> smtpd;Jason McIntyre
2014-09-16a little less sendmail specific;Jason McIntyre
2014-09-16no need to discuss sendmail (or any particular mailer) here;Jason McIntyre
while here, \*(Gt -> >, per ingo;
2014-09-15Remove non-standard <sys/dkstat.h> header. It has not contained anythingMiod Vallat
related to disk stastics for almost 17 years, and the remaining userland-visible defines duplicate those found in <sys/sched.h>. Move the remaining _KERNEL defines to <sys/tty.h> where they belong, and update all users to cope with this. ok kettenis@
2014-09-14Support backslash-escaping of white space in the query expression,Ingo Schwarze
to be more similar to apropos(1) called from the shell. Missing feature reported by Marcus MERIGHI <mcmer dash openbsd at tor dot at> on misc@.
2014-09-13Replace all queue *_END macro calls except CIRCLEQ_END with NULL.Doug Hogan
CIRCLEQ_* is deprecated and not called in the tree. The other queue types have *_END macros which were added for symmetry with CIRCLEQ_END. They are defined as NULL. There's no reason to keep the other *_END macro calls. ok millert@
2014-09-12warn about commas in function arguments; inspired by mdoclint(1)Ingo Schwarze
2014-09-11warn about botched .Xr ordering and punctuation below SEE ALSO;Ingo Schwarze
inspired by mdoclint(1)
2014-09-10Disable -Wshadow again, since it breaks builds on vax with gcc3.Joel Sing
2014-09-09If a manpath directory (for example, a _whatdb entry from man.conf(5)Ingo Schwarze
or an entry in the MANPATH environment variable) does not exist, silently skip it. This brings makewhatis(8) back closer to the behaviour of espie@'s version and ought to shut up the weekly(8) whining observed by henning@ on machines not having xbase installed. Also, don't error out after the first unusable manpath entry, still try the others. Of course, still complain about non-existent directories specified on the command line and about any directories failing for other reasons than ENOENT.
2014-09-09We no longer need to convert "\<" and "\>" to "[[:<:]]" and "[[:>:]]"Todd C. Miller
respectively now that the former is natively supported. OK jsg@
2014-09-09mention permissions on tun(4) devices in PermitTunnel documentation;Damien Miller
bz#2273
2014-09-09Eliminate a pile of casts that were superfluous or wrong, or that werePhilip Guenther
the result of bad type choices, particularly (unsigned char *) vs (const char *). Also, use reallocarray().
2014-09-08Add window_last_flag and window_zoomed_flag. From John Morrissey.Nicholas Marriott
2014-09-08Additional cleanup for procfs removalDoug Hogan
ok guenther@
2014-09-08obvious cases of missing .An;Ingo Schwarze
found with the new mandoc(1) MANDOCERR_AN_MISSING warning; no text changes
2014-09-07warn about AUTHORS sections without .An macros, inspired by mdoclint(1)Ingo Schwarze