summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2013-01-09correctly initialise fingerprint type for fingerprinting PKCS#11 keysDamien Miller
2013-01-08support AES-GCM as defined in RFC 5647 (but with simpler KEX handling)Markus Friedl
ok and feedback djm@
2013-01-08from pjanzen:Jason McIntyre
Reference (as per slashdot): http://www.nature.com/news/the-astronomical-unit-gets-fixed-1.11416 ... The astronomical unit (au) - the rough distance from the Earth to the Sun - has been transformed from a confusing calculation into a single number. The new standard, adopted in August by unanimous vote at the International Astronomical Union's meeting in Beijing, China, is now 149,597,870,700 metres ...
2013-01-06Remove empty[]. Unused after rev. 1.26.Martynas Venckus
2013-01-05In literal mode (.nf), each input line must be kept togetherIngo Schwarze
on the same output line, even if it is longer than the output width. This commit fixes a bug allowing an overly long last line of an indented block (.RS) to be broken even in literal mode. The bug was found using the sudo_plugin(4) manual provided by millert@. I introduced the bug in rev. 1.84 during the g2k12 Budapest hackathon.
2013-01-05teach file about lua 5.2.Federico G. Schwindt
ok miod@
2013-01-04an undocumented feature of units was the ability to specify a prefixJason McIntyre
in non-interactive mode. document that now, but also allow for the prefix to be given without a need to quote it; code lifted from atatat (netbsd -r1.10); otto helped me paste it in. ok otto millert
2013-01-04no more ussr; diff originally from Jeff RossJason McIntyre
2013-01-04sftp-server.8: add argument name to -dJason McIntyre
sftp-server.c: add -d to usage() ok djm
2013-01-03allow fingerprinting of keys hosted in PKCS#11 tokens: ssh-keygen -lD ...Damien Miller
ok markus@
2013-01-03allow specification of an alternate start directory for sftp-server(8)Damien Miller
"I like this" markus@
2013-01-03fix description of MAC calculation for EtM modes; ok markus@Damien Miller
2013-01-03add a couple of ServerOptions members that should be copied to the privsepDamien Miller
child (for consistency, in this case they happen only to be accessed in the monitor); ok dtucker@
2013-01-02correct format description for SSH_AGENTC_ADD_RSA_ID_CONSTRAINEDDamien Miller
bz#2051 from david AT lechnology.com
2013-01-02channel_setup_local_fwd_listener() returns 0 on failure, not -veDamien Miller
bz#2055 reported by mathieu.lacage AT gmail.com
2012-12-31Rewrite indentation handling for nested lists in a more systematic wayIngo Schwarze
to fix multiple issues reported by Todd Miller; thanks! Specifically, - avoid double indentation after .Bd inside .Bl - set up correct indentation after .Bl inside .Bl - set up correct indentation after .Dl and .D1 inside .Bl While here, also - set up correct indentation *inside* .Dl and .D1 inside .Bl.
2012-12-31update currency exchange rates;Jason McIntyre
2012-12-29siderealhour is measured in terms of siderealday, not "sidereal day";Jason McIntyre
from Alan Barrett, netbsd fix -r1.16;
2012-12-29Fix exit status when there is an error reading a file.Todd C. Miller
Reported by Jeramey Crawford, fix adapted from FreeBSD. OK guenther@
2012-12-28Respect locale for ctype purposes, e.g. display ISO Latin 1 characters;Christian Weisgerber
ok stsp@ reyk@ Document that multi-byte character sets are not supported; from stsp@
2012-12-27diff-buffer-with-fileFlorian Obser
input gsoares@, Sunil Nimmagadda, jasper@ ok jasper@, benno@
2012-12-27Move code for shell-command-on-region around to make pipeio() usableFlorian Obser
in other functions. ok jasper@, benno@
2012-12-25Report macro names for the second argument to shutdown(), getrusage(),Philip Guenthe
pathconf(), and fpathconf(), and for poll()'s INFTIM. When open()'s flag arg doesn't include O_CREAT, don't show the third argument unless th e-n option is given. Ditto for fcntl()'s F_GETFD and F_GETFL ops. Show sysctl()'s KERN_PROC_KTHREAD as "kthread". ok otto@
2012-12-24Add ^ and $ special command targets to select lowest and highestNicholas Marriott
numbered windows, from Raghavendra D Prabhu.
2012-12-24Add -T option to select-window to toggle to last window if alreadyNicholas Marriott
current, from Raghavendra D Prabhu.
2012-12-24Add missing function prototype.Nicholas Marriott
2012-12-24Add a -u flag to choose-tree to start uncollapsed, from Raghavendra DNicholas Marriott
Prabhu.
2012-12-24Remove an unnecessary redraw, from Raghavendra D Prabhu.Nicholas Marriott
2012-12-23%zfod was removed in -r1.24; from NaughtyJason McIntyre
2012-12-22cosmetic changes:Marc Espie
- pref -> prefix as pref is somewhat ambiguous - rework tests so loop doesn't intend off the screen - zap unneeded variable okay krw@
2012-12-21remove makefile hacks that are no longer needed with t1 t2: working properlyMarc Espie
okay krw@
2012-12-21the gcc bug seems to have been fixed...Theo de Raadt
ok miod
2012-12-20use openpty() rather than hand-rolled pty opening code; ok millert@Christian Weisgerber
2012-12-20readjust midi flow control after consuming input dataAlexandre Ratchov
2012-12-18We no longer use struct eproc for kinfo_proc in sysctl.h so thereTodd C. Miller
is no direct need for sys/proc.h or sys/resource.h. Some consumers of kinfo_proc need these for the proc flags and rlimit defines like RLIM_INF so add the appropriate includes to them. OK deraadt@ sthen@
2012-12-14a few more commentsMarc Espie
2012-12-14use correct string in error message; from rustybsd at gmx.frDarren Tucker
2012-12-13Change load_cfg to fix a crash reported by jasper.Nicholas Marriott
2012-12-12properly handle the case where a process has disappeared in between grep'ingAlexander Hall
and printing it discussed with and ok millert@
2012-12-12use OpenSSL's EVP_aes_{128,192,256}_ctr() API and remove our hand-rolledChristian Weisgerber
counter mode code; ok djm@
2012-12-12reset incoming_packet buffer for each new packet in EtM-case, too;Markus Friedl
this happens if packets are parsed only parially (e.g. ignore messages sent when su/sudo turn off echo); noted by sthen/millert
2012-12-12Don't print zero length matches in -o mode. Found by otto@ whoTodd C. Miller
initially proposed a different fix. OK otto@
2012-12-11fix typo, s/tem/etm in hmac-ripemd160-tem. ok markus@Stuart Henderson
2012-12-11add encrypt-then-mac (EtM) modes to openssh by defining new mac algorithmsMarkus Friedl
that change the packet format and compute the MAC over the encrypted message (including the packet size) instead of the plaintext data; these EtM modes are considered more secure and used by default. feedback and ok djm@
2012-12-11drain the log messages after receiving the keystate from the unprivMarkus Friedl
child. otherwise it might block while sending. ok djm@
2012-12-11use proper eol offset for -o matching; spotted by ajacoutot@; ok millert@Otto Moerbeek
2012-12-10Document --{exact,max}-versionJasper Lievisse Adriaanse
2012-12-09Use the CMD_*_USAGE defines consistently, from Thomas Adam.Nicholas Marriott
2012-12-08fix a pasto which broke (or rather, disabled) --max-versionJasper Lievisse Adriaanse
from Brian Manning (upstream ExtUtils::PkgConfig maintainer)
2012-12-08Handle resetting 256-colours properly when parsing #[default],Nicholas Marriott
#[fg=default] and #[bg=default] styles.