summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2009-02-18signature should hash over the entire group, not just the generatorDamien Miller
(this is still disabled code)
2009-02-17sync with revised default ciphers; pointed out by dkrause@Damien Miller
2009-02-15make rdist silently ignore special file types which cannot be movedTheo de Raadt
(well, if you turn on debug it will still tell you) from Tim van der Molen <tbvdm@xs4all.nl
2009-02-15in a secure YP context, a chpass would whack the user's password to *Theo de Raadt
which is clearly not the intent. PR 4177, fix from schwarze@usta.de
2009-02-15exmaple -> example;Jason McIntyre
2009-02-15add our temporary RCS file to our temp_files worklist in caseJoris Vink
for some reason we get interrupted before calling rename(). we hate leaving behind temporary files.
2009-02-15bump version to match next releaseJoris Vink
2009-02-15support rlog -dJoris Vink
prodded & tested by sthen@
2009-02-14mention that eow and no-more-sessions extensions are sent only toDamien Miller
OpenSSH peers
2009-02-13be more sane in handling the given repository pathJoris Vink
in cvs_client_updated().
2009-02-13style and typos fixes from Thomas PfaffAlexandre Ratchov
2009-02-13check for enc !=NULL in packet_start_discardMarkus Friedl
2009-02-12kill trailing whitespace;Jason McIntyre
2009-02-12document RemoteForward usage with 0 listen portDamien Miller
2009-02-12consistency: Dq => QlDamien Miller
2009-02-12document -R0:... usageDamien Miller
2009-02-12some paranoia: check that the serialised key is really KEY_RSA beforeDamien Miller
diddling its internals
2009-02-12tighten check for -R0:... forwarding: only allow dynamic allocation ifDamien Miller
want_reply is set in the packet
2009-02-12support remote port forwarding with a zero listen port (-R0:...) toDamien Miller
dyamically allocate a listen port at runtime (this is actually specified in rfc4254); bz#1003 ok markus@
2009-02-10mark these utilities as being largely posix compliant or, in the case ofJason McIntyre
nm, as not being posix compliant;
2009-02-10STANDARDS:Jason McIntyre
mark these utilities as being either optional (SD/FR/UP); or as being compliant only with XPG4 (XSI); strip.1 and talk.1 are tweaked purely for consistency; thanks otto for feedback
2009-02-09STANDARDS: these applications are no longer optional in posixJason McIntyre
2009-02-08updates to IEEE Std 1003.1-2008;Jason McIntyre
2009-02-08bump the posix reference in STANDARDS to IEEE Std 1003.1-2008, with a fewJason McIntyre
updates to follow;
2009-02-08some minor corrections for the STANDARDS section;Jason McIntyre
2009-02-07Restore the original help output: capitalize the characters thatChristian Weisgerber
are required to uniquely identify a command. Three characters are required for the cdplay and cdrip commands. ok krw@
2009-02-07malloc(n * m) -> calloc(n, m);Charles Longeau
ok ray@ moritz@
2009-02-07remove leftover from mdoc.samples; ok jmc@Martynas Venckus
2009-02-07add missing headers needed for warn() and err().Charles Longeau
ok claudio@ ray@
2009-02-06remove unused variables.Charles Longeau
ok henning@ michele@
2009-02-06simplify the clock tick messages generation code and ensuire thatAlexandre Ratchov
the first clock tick (ie the start tick) is not lost
2009-02-06move error messages reported to user into main()Alexandre Ratchov
2009-02-04if there are too many connections, stop acceping new ones ratherAlexandre Ratchov
than exit()ing with ``too many open files'' fatal error
2009-02-04document server mode with help from jmc@Alexandre Ratchov
2009-02-04daemonize when in server mode, suggested by manyAlexandre Ratchov
ok jakemsr
2009-02-03in server mode, create /tmp/aucat-userid/ directory withAlexandre Ratchov
permissions 0700, and create sockets in it. This prevents one local user to eavesdrop or disturb audio programs of other users. if you're using the ``-s socket'' option with an absolute path as argument, please update it to use a socket name. requested by many, bits from jakemsr and otto ok jakemsr
2009-02-03Reflect MPLS kernel changes. Operations are stored now in rt_mpls field.Michele Marchetto
ok claudio@ laurent@
2009-02-02Fix typo, from Joao Salvatti <salvatti@gmail.com>.Marc Balmer
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@