summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2009-02-02Initialize a few variables to prevent spurious "may be used uninitialized"Darren Tucker
warnings from newer gcc's. ok djm@
2009-02-01Move variable declarations around to compile with gcc 2Miod Vallat
2009-01-30add missing ellipsis to the list of options.Igor Sobrado
2009-01-28remove undocumented support for "-e" in ex(1).Igor Sobrado
millert@ says that neither 4.4BSD nor Solaris ex(1) accept this flag, so it is safe to reject it too. ok jsing@
2009-01-28Re-add "Category" category to sendbug template. Without it, reportsRay Lai
were categorized as "pending" and the report was never acked. Reported by RD Thrush and bernd@, OK miod
2009-01-28enable -d for the export command.Pierre-Yves Ritschard
ok joris@
2009-01-28Make the -A a bit more readable by adding a newline between the route andClaudio Jeker
mk list.
2009-01-28ex(1), vi(1), and view(1) have different synopses; each nex/nvi utilityIgor Sobrado
should manage the right set of options and return an appropriate usage when required. jsing@ has suggested preserving "-e" in ex(1) as an undocumented compatibility flag to avoid breaking silly scripts that may use this option with the line-oriented editor. diff sent upstream to nex/nvi maintainers. ok ("put it in!") jsing@
2009-01-28since -g is always overridden by -l in ls(1), the equivalent of theJason McIntyre
-ls primary is better described as "ls -dils" than "ls -dgils";
2009-01-27on some servers LIST defaults to LIST -a. ignore pseudo-directoriesMartynas Venckus
so that recursive transfers don't cause a loop. problem reported and tested by Jesus Sanchez. string compare inlining and looks good to millert@
2009-01-27Fix some interger overflows when accounting the used mbuf memory percentageClaudio Jeker
and while there use a better type for the plural{,es}() functions. OK henning@
2009-01-27fix the mbuf view to cope with the recent change to the mclgeti allocator.David Gwynne
from canacar@
2009-01-26NULL instead of 0 in comparisonClaudio Jeker
2009-01-26Again use P to mark multipath routes in route output. OK henning@Claudio Jeker
2009-01-26Work around the CPNI-957037 Plaintext Recovery Attack by alwaysMarkus Friedl
reading 256K of data on packet size or HMAC errors (in CBC mode only). Help, feedback and ok djm@ Feedback from Martin Albrecht and Paterson Kenny
2009-01-25don't set malloc_options to not interfer with /etc/malloc.confAlexandre Ratchov
requested and explained by fgsch@, henning@, otto@
2009-01-24sync list of preferred ciphers; ok djm@Christian Weisgerber
2009-01-23catch SIGHUP and SIGTERM too, to ensure that recorded files areAlexandre Ratchov
properly closed and sockets are cleaned up.
2009-01-23spacing + typo fix from Matt Jibson <matt.jibson(at)gmail.com>Alexandre Ratchov
2009-01-23prefer CTR modes and revised arcfour (i.e w/ discard) modes to CBCDamien Miller
modes; ok markus@
2009-01-22another chunk of a2port() diff that got away. wtfdjm??Damien Miller
2009-01-22make a2port() return -1 when it encounters an invalid port numberDamien Miller
rather than 0, which it will now treat as valid (needed for future work) adjust current consumers of a2port() to check its return value is <= 0, which in turn required some things to be converted from u_short => int make use of int vs. u_short consistent in some other places too feedback & ok markus@
2009-01-22oops! I committed the wrong version of the Channel->path diff,Damien Miller
it was missing some tweaks suggested by stevesk@
2009-01-22make Channel->path an allocated string, saving a few bytes here andDamien Miller
there and fixing bz#1380 in the process; ok markus@
2009-01-19replace standardized text concerning the exit values of applicationsIgor Sobrado
with the right mdoc macros.
2009-01-151) use obsolete instead of alias for consistencyKevin Steves
2) oUserKnownHostsFile not obsolete but oGlobalKnownHostsFile2 is so move the comment. 3) reorder so like options are together ok djm@
2009-01-14support SOCKS4A protocol, from dwmw2 AT infradead.org via bz#1482;Damien Miller
"looks ok" markus@
2009-01-14fix printing status on removed files by default;Joris Vink
slighty different diff applied then what the bug author provided us. thanks & closes pr 6038
2009-01-10tweak previous;Jason McIntyre
2009-01-10add "loopback" mode in which input is connected to the output.Alexandre Ratchov
This is useful to mix, demultiplex, resample or reencode audio files off-line. tweak + ok jakemsr
2009-01-09Tamas TEVESZ requested a better description for tip/cu, so pull in thisJason McIntyre
improvement from perry@netbsd, -r1.26; nick suggested a better description for the .Nd line; ok nick
2009-01-09Do not try to set the close on exec flag if we didn't actually open sudoers.Todd C. Miller
Fixes a crash when sudoers owenership is wrong found by thib@
2009-01-08Reflect MPLS kernel changes.Michele Marchetto
ok claudio@
2009-01-06i saw the previous was wrong as soon as i committed it: put theJason McIntyre
built-in blurb in STANDARDS; we did once have a COMPATIBILITY section which we merged with STANDARDS, so i think this is appropriate. it certainly feels better than adding single sentences randomly to the end of text bodies.
2009-01-06document, consistently, those apps which also exist as built-insJason McIntyre
on certain shells; do not try to document changes between the implementations, but at least warn of their existence; diff from Ingo Schwarze
2009-01-06don't use a reference to the device file. Use the corresponding aprocAlexandre Ratchov
structure instread.
2009-01-05since socks5 has been removed from ports recently, switch ftp toMartynas Venckus
dante instead. "makes sense" sthen@, ajacoutot@, "no objections" millert@; "i agree" jakob@. tested by Simon Kuhnle and myself
2009-01-04sync the synopsis and usage of the command; "usage:" is lowercase.Igor Sobrado
tweaked and ok by jmc@
2009-01-04replace hardcoded exit values with .Ex macros;Igor Sobrado
ok jmc@
2009-01-02Add format attributes to functions that use variable arguments andCan Erkin Acar
make the code -Wformat=2 clean. ok joris@ xsa@
2009-01-01Unclutter 'systate rules' by printing the flags option using the minimalRyan Thomas McBride
pf.conf syntax (flags S/SA is implicit). ok henning canacar
2009-01-01fix hash calculation for KEXGEX: hash over the original client-suppliedDamien Miller
values and not the sanity checked versions that we acutally use; bz#1540 reported by john.smith AT arrows.demon.co.uk ok markus@
2009-01-01call channel destroy callbacks on receipt of open failure messages.Damien Miller
fixes client hangs when connecting to a server that has MaxSessions=0 set spotted by imorgan AT nas.nasa.gov; ok markus@
2009-01-01Fix iso weekno calculation by using a different algorithm. Still hardOtto Moerbeek
to follow, but this one has a documented origin at least; ok pyr@ jasper@
2008-12-31Skip missing pool indices instead of printing errors.Can Erkin Acar
2008-12-30be clear about what csplit does by default when no options to theJason McIntyre
contrary are specified; feedback/ok otto millert
2008-12-30make -S case insensitive; this avoids any confusion over the factJason McIntyre
that MD page headers use mixed case; tidy up the man page regarding this; diff from Ingo Schwarze ok sobrado millert krw
2008-12-30add AllowAgentForwarding to available Match keywords listOkan Demirmen
ok djm
2008-12-29make the code "more correct": add reference counters to aprocAlexandre Ratchov
structures so we can keep a pointer to the device. Beside some simplifications, this allows to easily handle the situation where the audio device desappears. No change in the behaviour.
2008-12-29no need to escape single quotes in commentsKevin Steves