Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-10-06 | Amend previous commit to unbreak TLS cert validation when using a proxy. | Jeremie Courreges-Anglas | |
ok miod@ | |||
2014-10-06 | correct options in usage(); from mancha1 AT zoho.com | Damien Miller | |
2014-10-04 | Be sure to only path the remote host to ressl_connect_socket(), without a | Miod Vallat | |
possible :portnumber suffix. Noticed by ajacoutot@ ok ajacoutot@ deraadt@ | |||
2014-10-03 | update for new ressl noverify API | Ted Unangst | |
2014-10-03 | Update ftp ressl configuration to handle recent changes in the library. | Joel Sing | |
2014-10-02 | Top function key is F12 now. | Nicholas Marriott | |
2014-10-02 | Take account of window-status-separator when checking window position, | Nicholas Marriott | |
based on diff from Balazs Kezes. | |||
2014-10-02 | Update status when pane selected with mouse, from Balazs Kezes. | Nicholas Marriott | |
2014-10-02 | Copy ACS characters as UTF-8, from Balazs Kezes. | Nicholas Marriott | |
2014-10-02 | exit in usage functions themselves; from Fritjof Bornebusch; ok nicm@ | Otto Moerbeek | |
2014-10-01 | Call waitpid on SIGCHLD even if client not attached, it is possible (on | Nicholas 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-01 | update currency exchange rates; | Jason McIntyre | |
2014-10-01 | Switch "openssl req" to using SHA256 for hashes and AES256 to encrypt on-disk | Stuart 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-30 | atoi to strtonum; from Fritjof Bornebusch; ok nicm@ | Otto Moerbeek | |
2014-09-29 | Merge conflicts. | James Turner | |
2014-09-29 | When setting environment variables in the atrun script, use the | Todd 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-27 | Use %zu where appropriate, from Fritjof Bornebusch. | Otto Moerbeek | |
2014-09-27 | sound reasoning | Sebastian Benoit | |
2014-09-25 | Support using pane id as part of session or window specifier (so %1 | Nicholas Marriott | |
means session-of-%1 or window-of-%1) and window id as part of session (so @1 means session-of-@1). | |||
2014-09-25 | Support ! for last pane. | Nicholas Marriott | |
2014-09-23 | Hide unused, duplicate and/or misleading fields. | Alexandre Ratchov | |
ok armani, shadchin, kspillner | |||
2014-09-21 | plug a small memory leak, fairly infrequent. | Marc Espie | |
2014-09-21 | Fix an invalid escape sequence. | Daniel Dickman | |
ok nicm@ | |||
2014-09-17 | simplify 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-17 | implement .An -[no]split for -Thtml | Ingo Schwarze | |
2014-09-17 | Add display of the flags to pipe2, dup3, and accept4, display of | Philip 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-17 | Increase number of blowfish rounds to 8 by default when not specified in | Kent R. Spillner | |
login.conf. ok deraadt@ doug@ millert@ "please commit" tedu@ | |||
2014-09-17 | Fix some comments (c -> colour) and join unnecessary line splits. | Nicholas Marriott | |
2014-09-17 | Remove unused #define. | Lawrence Teo | |
ok jsing@ | |||
2014-09-17 | try to document that the -1 option will be selected by default if more | David Gwynne | |
than 8 cpus are detected in the system. | |||
2014-09-17 | be more explicit about what '1' toggles between | David Gwynne | |
2014-09-17 | if there are more than 8 cpus, default to combined cpu stats (like | David Gwynne | |
you passed -1 on the command line). ok kettenis@ tedu@ | |||
2014-09-16 | less sendmail specific; ok millert | Jason McIntyre | |
2014-09-16 | sendmail -> smtpd; | Jason McIntyre | |
2014-09-16 | a little less sendmail specific; | Jason McIntyre | |
2014-09-16 | no need to discuss sendmail (or any particular mailer) here; | Jason McIntyre | |
while here, \*(Gt -> >, per ingo; | |||
2014-09-15 | Remove non-standard <sys/dkstat.h> header. It has not contained anything | Miod 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-14 | Support 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-13 | Replace 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-12 | warn about commas in function arguments; inspired by mdoclint(1) | Ingo Schwarze | |
2014-09-11 | warn about botched .Xr ordering and punctuation below SEE ALSO; | Ingo Schwarze | |
inspired by mdoclint(1) | |||
2014-09-10 | Disable -Wshadow again, since it breaks builds on vax with gcc3. | Joel Sing | |
2014-09-09 | If 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-09 | We no longer need to convert "\<" and "\>" to "[[:<:]]" and "[[:>:]]" | Todd C. Miller | |
respectively now that the former is natively supported. OK jsg@ | |||
2014-09-09 | mention permissions on tun(4) devices in PermitTunnel documentation; | Damien Miller | |
bz#2273 | |||
2014-09-09 | Eliminate a pile of casts that were superfluous or wrong, or that were | Philip Guenther | |
the result of bad type choices, particularly (unsigned char *) vs (const char *). Also, use reallocarray(). | |||
2014-09-08 | Add window_last_flag and window_zoomed_flag. From John Morrissey. | Nicholas Marriott | |
2014-09-08 | Additional cleanup for procfs removal | Doug Hogan | |
ok guenther@ | |||
2014-09-08 | obvious cases of missing .An; | Ingo Schwarze | |
found with the new mandoc(1) MANDOCERR_AN_MISSING warning; no text changes | |||
2014-09-07 | warn about AUTHORS sections without .An macros, inspired by mdoclint(1) | Ingo Schwarze | |