summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2008-10-02Convert an unchecked strdup to xstrdup. OK deraadt@Todd C. Miller
2008-10-01-s not specified by posix; from Daniel DickmanJason McIntyre
2008-10-01in getrusage(), use RUSAGE_SELF for the current process rather than 0Kevin Lo
ok millert@
2008-09-30Properly display files with embedded colons being xferred via ftd.Todd C. Miller
Closes PR 5119. OK miod@
2008-09-29Add a missing `|' to the description of -perm.Matthias Kilian
ok jmc@
2008-09-26support 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-25do 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-24remove unused functionCharles Longeau
from tobias@ ok otto@ tobias@
2008-09-19documentation tweaks; synchronize synopsis and usage.Igor Sobrado
written with help by jmc@ ok jmc@
2008-09-18unbreak for gcc2 archs; declaration before code!Todd T. Fries
2008-09-18remove unused variableCharles Longeau
sure henning@
2008-09-17try 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-16netstat statistics for pflow(4) via pseudo familyJoerg Goltermann
ok cluadio@ henning@
2008-09-15Similar to route(8) change mask rtm->rtm_priority with RTP_MASK to showClaudio Jeker
correct values. OK henning@
2008-09-15- describe how printf(1) and printf(3) %e, %E, %g, %G, %a, %A behaveMartynas Venckus
when the argument is infinity/not-a-number ok millert@, jmc@
2008-09-15Expose 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-15Enable 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-14describe %a/%A. from freebsdMartynas Venckus
tweaks/ok millert@, jmc@
2008-09-12Move the revision selection in front of output, so errors won't mix upTobias Stoeckmann
with output. Matches GNU cvs.
2008-09-12Plugged two memory leaks which could be encountered while using -r argumentTobias Stoeckmann
with various CVS commands. "seems to make sense" xsa@
2008-09-12Be 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-12Be very conservative about state changes with "admin -s". With GNU CVSTobias 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-11only 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
2008-09-08- simplify mget(): remove the duplicate code and just use getit(),Martynas Venckus
as a result it can do nice things getit() does such as: - -n: use 'newer' for transfers (fetches files that are newer on the server, than locally), this can be used for e.g. mirroring (mget -cnr 4.* would fetch missing files, continue interrupted transfers, and replace newer files of 4.X dirs) - -d: spedify depth of the recurrence. e.g. 'mget -rd 2 patches' in pub/openbsd would fetch only archive files, not going further into dirs - use static restartit, max_depth instead of doing the magic tested/requested&ok merdely@; ok pyr@, millert@ man page tweaks&ok jmc@
2008-09-08enable support for %a, %A, %F. ok theoMartynas Venckus
2008-09-08"InUse" is much more interesting than "Releases" for pools. ok beck@Otto Moerbeek
deraadt@ art@
2008-09-07gc unused file (obseleted by libcrypto update)Damien Miller
2008-09-06OpenSSL 0.9.8h supplies a real EVP_sha256 so we do not need ourDamien Miller
replacement anymore
2008-09-06adapt to sha2(3) API changes; ok millert@Damien Miller
2008-09-06Calling --help shouldn't be an error condition, so exit with status 0Simon Bertrang
instead of 1, and make it consistent with gnu. ok ckuethe@
2008-09-04+awk does not support {n,m} pattern matchingJason McIntyre
noted by Vadim Zhukov, though slightly different (doc) fix committed; ok millert
2008-09-01Display direction In/Out/Any for rule display, not just In/Out.Stuart Henderson
ok canacar@
2008-09-01section headings do not need to be quoted; from Alan R. S. BuenoJason McIntyre
2008-09-01note that the opening delimiter of a context address should be precededJason McIntyre
by a backslash, if the delimiter is not a slash; adapted from freebsd -r1.47 from yar;
2008-08-30use a bitmap to store the features. simplify the code a bit and allow forFederico G. Schwindt
future work. ok av@ a similar diff.
2008-08-29Fix nvi's cscope support in the case that someone provided a filenameOwain Ainsworth
without a directory (e.g. :cscope add cscope.out). Found and fixed by Paul Irofti, with help from me; Thanks! upstream nvi also has this fix. ok otto@.
2008-08-29Pre-commit checks (CVSROOT/commitinfo) are run before log message isTobias Stoeckmann
requested. Do this for GNU cvs compatibility, too. ok joris
2008-08-29Support for variable expansion in trigger files added.Tobias Stoeckmann
ok joris
2008-08-29If parsing of a command in one of the trigger files fails, treat this as anTobias Stoeckmann
error instead of ignoring it. ok joris
2008-08-28typo; from hyjialJason McIntyre
ok otto
2008-08-27correct man sections; from Tobias SarnowskiJason McIntyre
ok millert
2008-08-27add a C-c target, so we can use it as a prefix for keybindings.Kjell Wooding
Now you can do something like: global-set-key "\^c\^c" compile in your ~/.mg
2008-08-25minor tweak for removal of "[-d devel]" (change done in r1.19 and r1.21).Igor Sobrado
ok ratchov@
2008-08-22default file transfer type is binary, not ascii;Igor Sobrado
commands which toggle settings can take an explicit on or off argument to force the setting appropiately, show these arguments in usage; synchronize synopsis and usage of commands; spacing; KNF; other minor documentation tweaks. written with help by jmc@ ok jmc@ (documentation), martynas@ (type usage and default file transfer type)
2008-08-22kill trailing whitespace;Jason McIntyre
2008-08-21Add an optional separator to stringize() and use it from do_list() toSimon Bertrang
match the GNU pkg-config --list-all output. ok ckuethe@
2008-08-21Document new gnu extensions, okay jmc@, otto@Marc Espie
2008-08-21in gnu-m4 mode, allow definition of the empty macro (yes, autoconf 2.62Marc Espie
actually uses this, bleh) okay otto@
2008-08-21extend format support to cater to recent GNU autoconfMarc Espie
okay otto@, some useful ideas from miod@