summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2015-08-18do not cast malloc() return if stdlib.h is includedTheo de Raadt
2015-08-17Fix whois server detection for new TLDs using whois.nic.<domain> whereStuart Henderson
<domain> has an old TLD as a substring. Specifically, fixes .network lookups. While there, simplify a strlcpy+strlcat to snprintf. ok millert@ phessler@
2015-08-16Come out of copy mode when history is cleared.Nicholas Marriott
2015-08-14match myproposal.h order; from brian conwayJason McIntyre
(i snuck in a tweak while here) ok dtucker
2015-08-14Remove charsets other than UTF-8 from locale(1) output.Stefan Sperling
ok mpi tedu phessler zhuk, and discussed with many at c2k15
2015-08-14Move locate(1) database build directory back to /tmp and kill non-existentRafael Zalamena
/usr/tmp references. Diff from Craig Skinner via tech@ plus a /usr/tmp removal from me in the updatedb script. ok millert@.
2015-08-13oops, SYNOPSIS was missing an Ar; while here i tweaked the list spacing;Jason McIntyre
2015-08-13Grow -P (POSIX output) and -t (POSIX output radix) support. Several 3rd-partyMiod Vallat
software depend upon this. Requested by feinerer@, ok millert@; manpage bits ok jmc@
2015-08-13and now we can unify the code. okay tedu@Marc Espie
err() suggestion by Martijn van Duren
2015-08-13right-up should be right-of, also rename the values too.Nicholas Marriott
2015-08-12more explicit warnings. Okay tedu@Marc Espie
2015-08-12Support + and - for dates.Nicholas Marriott
2015-08-12Mention LC_MESSAGES.Vadim Zhukov
Input & okay (pre-lock) from jmc@, sobrado@ and stsp@.
2015-08-12Fix adjustment of the offset when string, pstring or search match.Nicholas Marriott
2015-08-12Rename left/right/up/down relative to active pane to add -of suffixNicholas Marriott
(left-of/right-of/etc) to remove conflict with left/right meaning leftmost or rightmost pane. From Ben Boeckel.
2015-08-12Add string/Ww as aliases for string/Bb, and ignore t. (The latestNicholas Marriott
version of the original file replaced Bb with Ww and then reused b for something else (!), but alias them instead.)
2015-08-11Only warn about [bl]estring16 when they are used, like the otherNicholas Marriott
unsupported types.
2015-08-11When an exact string match is found, only print the test string, not upNicholas Marriott
to \0. Noticed by Theo with some GIF files.
2015-08-11Any type can be prefixed with "u", even where it makes no sense. AlsoNicholas Marriott
make pstring/upstring a text type.
2015-08-11Warn sensibly for unrecognised !: lines rather than trying to parse them.Nicholas Marriott
2015-08-11Accept hexadecimal numbers without 0x if they aren't a valid decimalNicholas Marriott
number.
2015-08-11Actually leave the invalid ml in the tree after making it type NONE.Nicholas Marriott
2015-08-11An invalid line can't just be thrown away because if it has any childrenNicholas Marriott
they will end up with the wrong parent. Instead, leave it in the tree but force its type to NONE so it never matches.
2015-08-11Extend accepted operators to +-&/%* for integer tests.Nicholas Marriott
2015-08-11Support = test for floats and doubles.Nicholas Marriott
2015-08-11If we are expecting a signed number but it fails, try to parse it asNicholas Marriott
unsigned instead.
2015-08-11Allow spaces around any operator, not just =.Nicholas Marriott
2015-08-11Include more context in warnings where it is possible.Nicholas Marriott
2015-08-11Add another function for printing warnings before the magic_line isNicholas Marriott
created so all warnings go through the same fprintf.
2015-08-11Use INTIM instead of -1 as poll(2) time-out argument.Alexandre Ratchov
Suggested by deraadt.
2015-08-11Don't call poll(2) with few millisecond time-out argument when -1Alexandre Ratchov
could be used. Avoids syscalls when the daemon is not being used. Requested by deraadt.
2015-08-11Improve openssl s_client -starttls xmpp support.Landry Breuil
From https://rt.openssl.org/Ticket/Display.html?id=2860&user=guest&pass=guest - add a -xmpphost option to specify the xmpp virtual host - fix an infinite loop when the vhost isnt what the server expects - fix communication with openfire & prosody servers with tweaks & ok bcook@ doug@ manpage bits jmc@
2015-08-06add prohibit-password as a synonymn for without-password, since theTheo de Raadt
without-password is causing too many questions. Harden it to ban all but pubkey, hostbased, and GSSAPI auth (when the latter is enabled) from djm, ok markus
2015-08-04backout SSH_RSA_MINIMUM_MODULUS_SIZE increase for this release;Damien Miller
problems spotted by sthen@ ok deraadt@ markus@
2015-08-03remove an extra getuid call, reported by Martijn van DurenTed Unangst
2015-08-02remove ssl3 bits; ok dougJason McIntyre
2015-08-02openssh 7.0; ok deraadt@Damien Miller
2015-08-01Move processing of polled files in its own function, and call itAlexandre Ratchov
twice: once for files that need immediate handling, and once for files that would block. No behavior change.
2015-08-01update currency exchange rates;Jason McIntyre
2015-07-31Allow PermitRootLogin to be overridden by configChris Cappuccio
ok markus@ deeradt@
2015-07-31Account for newlines in substitution (s///) commands. SubstitutionTodd C. Miller
commands might contain a newline in the replacement pattern (escaped with a backslash before it), causing patch's understanding of the state the ed child process is in to diverge from reality. This can lead to patch unwillingly feeding '!' (execute shell command) lines to ed. From Martin Natano. OK deraadt@
2015-07-30fix pty permissions; patch from Nikolay Edigaryev; ok deraadtDamien Miller
2015-07-30change default: PermitRootLogin without-passwordTheo de Raadt
matching install script changes coming as well ok djm markus
2015-07-30make gid parsing look like uid parsing. from Martijn van DurenTed Unangst
ack deraadt
2015-07-30Fix usage examples.Vadim Zhukov
From Theo Buehler on misc@, thanks! okay jmc@, deraadt@.
2015-07-30note that symlinks are not followed by default;Jason McIntyre
from tilo stritzky ok nicm and discussed with deraadt
2015-07-30switch references from sudo to doas;Jason McIntyre
ok deraadt
2015-07-30Allow ssh_config and sshd_config kex parameters options be prefixedDamien Miller
by a '+' to indicate that the specified items be appended to the default rather than replacing it. approach suggested by dtucker@, feedback dlg@, ok markus@
2015-07-29status_out and associated data structures are no longer used.Nicholas Marriott
2015-07-29gc macro that's no longer used since the move to reallocarrayMarc Espie