Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-10-10 | use 'Privileged ports can be forwarded only when logging in as root on | Kevin Steves | |
the remote machine.' for RemoteForward just like ssh.1 -R. ok djm@ jmc@ | |||
2008-10-10 | typo in error message; ok djm@ | Kevin Steves | |
2008-10-10 | spelling in comment; ok djm@ | Kevin Steves | |
2008-10-09 | cvs(1) uses a config file to know about the $OpenBSD$ expansion keyword, | Theo de Raadt | |
but unfortunately rcs is not so lucky, and it will have to encoded inside. A bit gross, but what can we do? PR 5953, ok tobias | |||
2008-10-09 | Now that len is set later in compile_subst() we need to move the | Todd C. Miller | |
xmalloc call that goes with it. | |||
2008-10-09 | remove unused variable | Charles Longeau | |
ok millert@ jsing@ | |||
2008-10-09 | In compile_subst(), adjust for the fact that the initial buffer | Todd C. Miller | |
that is passed in may now be larger than _POSIX2_LINE_MAX. Thanks to pedro@ for the test case. OK pedro@ | |||
2008-10-09 | Don't strip newline when reading lines; matches the original behavior. | Todd C. Miller | |
From otto@ | |||
2008-10-09 | add -y to usage(); | Jason McIntyre | |
2008-10-09 | - add -d to usage | Jason McIntyre | |
- sync -f arg name with man page synopsis | |||
2008-10-09 | support setting PermitEmptyPasswords in a Match block | Damien Miller | |
requested in PR3891; ok dtucker@ | |||
2008-10-08 | Add -y option to force logging via syslog rather than stderr. | Damien Miller | |
Useful for daemonised ssh connection (ssh -f). Patch originally from and ok'd by markus@ | |||
2008-10-08 | document -d. ok millert@ | Martynas Venckus | |
2008-10-08 | use (unsigned) in rate calculation for > 2 billion interrupts. This will | Theo de Raadt | |
do until when we tweak struct uvmexp to have unsigned 64 bit counters, and when we do, it will not break. from PR 4046, ok millert | |||
2008-10-08 | Allow sed to handle arbitrarily long lines. Also plug a memory | Todd C. Miller | |
leak noticed in the process. Closes PR 5303. OK otto@ deraadt@ | |||
2008-10-08 | For "gunzip -N", the name stored in the gzip header has no directory, | Todd C. Miller | |
so write the uncompressed file in the same directory we would use were the -N option not specified. Closes PR 5224 | |||
2008-10-08 | Fix the order of traversal when printing the queues. Properly places | Can Erkin Acar | |
child queues under their respective interface root queues. Reported by jared r r spiegel via PR 5861. | |||
2008-10-07 | The 'l' command should not encode newlines. Also document that | Todd C. Miller | |
backspace is escaped as \b. OK phessler@ and jmc@ | |||
2008-10-07 | There is no /usr/old/bin/sed so compare test results against /usr/bin/sed | Todd C. Miller | |
2008-10-07 | Do not display file offsets and a few other pieces of information, except | Theo de Raadt | |
to the user or the superuser. Display * for those fields instead. From PR 5113, but modified to use copyout correctly. comments from tedu, ok from others | |||
2008-10-06 | Update awk to version 20071023; OK deraadt@ | Todd C. Miller | |
2008-10-06 | give working examples (s/timespec/time/ for variables exported) | Todd T. Fries | |
please commit from jmc@ | |||
2008-10-06 | parse all arguments before going and doing the job requested by -P | Theo de Raadt | |
(slight change made to check argc == 0) from Daniel Dickman | |||
2008-10-03 | Repair strnvis() buffersize of 4*n+1, with termination gauranteed by the | Theo de Raadt | |
function. spotted by des@freebsd, who commited an incorrect fix to the freebsd tree and (as is fairly typical) did not report the problem to us. But this fix is correct. ok djm | |||
2008-10-03 | do not give an example of how to chmod files: we can presume the user | Jason McIntyre | |
knows that. removes an ambiguity in the permission of authorized_keys; ok deraadt | |||
2008-10-02 | get rid of some unneeded $Id stuff | Theo de Raadt | |
2008-10-02 | Convert an unchecked strdup to xstrdup. OK deraadt@ | Todd C. Miller | |
2008-10-01 | -s not specified by posix; from Daniel Dickman | Jason McIntyre | |
2008-10-01 | in getrusage(), use RUSAGE_SELF for the current process rather than 0 | Kevin Lo | |
ok millert@ | |||
2008-09-30 | Properly display files with embedded colons being xferred via ftd. | Todd C. Miller | |
Closes PR 5119. OK miod@ | |||
2008-09-29 | Add a missing `|' to the description of -perm. | Matthias Kilian | |
ok jmc@ | |||
2008-09-26 | support proxies with password. | Marc Espie | |
adapted from a patch by nikns, with tweaks by millert. took forever to test for real... okay miod@, henning@, millert@ | |||
2008-09-25 | do not hardcode the editor name in the message displayed by "-r" | Igor Sobrado | |
when there are no files to recover as this flag is used by ex(1) and view(1) too. problem found by jsing@, Sven Verdoolaege did some suggestions to improve its portability. diff committed upstream. ok jsing@ | |||
2008-09-24 | remove unused function | Charles Longeau | |
from tobias@ ok otto@ tobias@ | |||
2008-09-19 | documentation tweaks; synchronize synopsis and usage. | Igor Sobrado | |
written with help by jmc@ ok jmc@ | |||
2008-09-18 | unbreak for gcc2 archs; declaration before code! | Todd T. Fries | |
2008-09-18 | remove unused variable | Charles Longeau | |
sure henning@ | |||
2008-09-17 | try getlogin() to get the real username when comitting files as root. | Reyk Floeter | |
this gives better information in log messages when the user logged in with a different uid and used sudo or su to become root. matches the behaviour of gcvs except that we don't fallback to LOGNAME or USER since getlogin() should not lie. ok tobias@ | |||
2008-09-16 | netstat statistics for pflow(4) via pseudo family | Joerg Goltermann | |
ok cluadio@ henning@ | |||
2008-09-15 | Similar to route(8) change mask rtm->rtm_priority with RTP_MASK to show | Claudio Jeker | |
correct values. OK henning@ | |||
2008-09-15 | - describe how printf(1) and printf(3) %e, %E, %g, %G, %a, %A behave | Martynas Venckus | |
when the argument is infinity/not-a-number ok millert@, jmc@ | |||
2008-09-15 | Expose the undo commands as proper mg functions. | Kjell Wooding | |
This should have no functional change on undo, but it does facilitate testing undo behavior. | |||
2008-09-15 | Enable dirty buffer detection in mg. | Kjell Wooding | |
Emulate the emacs behavior: after suspend/resume, buffer switch, or at save time, warn (prompt) the user if the file has been modified on disk in the interim. This has already saved my butt numerous times. ok phessler | |||
2008-09-14 | describe %a/%A. from freebsd | Martynas Venckus | |
tweaks/ok millert@, jmc@ | |||
2008-09-12 | Move the revision selection in front of output, so errors won't mix up | Tobias Stoeckmann | |
with output. Matches GNU cvs. | |||
2008-09-12 | Plugged two memory leaks which could be encountered while using -r argument | Tobias Stoeckmann | |
with various CVS commands. "seems to make sense" xsa@ | |||
2008-09-12 | Be also very conservative about the supplied revision for state changes, | Tobias Stoeckmann | |
i.e. don't successfully parse "admin -s dead:1.1:1.1". Changed global var logrev into function-specific all-purpose rev, too. No objections xsa@ | |||
2008-09-12 | Be very conservative about state changes with "admin -s". With GNU CVS | Tobias Stoeckmann | |
and current OpenCVS code it's possible to change a state in a way that cannot be fixed with another admin call. No objections xsa@ | |||
2008-09-11 | only send eow and no-more-sessions requests to openssh 5 and newer; | Markus Friedl | |
fixes interop problems with broken ssh v2 implementations; ok djm@ | |||
2008-09-08 | - add descriptions for %F, and infinity/not-a-number from printf(3) | Martynas Venckus | |
- add missing %e to the format list |