summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2005-10-12minor knf;Xavier Santolaria
2005-10-12various usage cleanup; ok jorisTheo de Raadt
2005-10-12sync SEE ALSO sections;Xavier Santolaria
2005-10-12rlog man page;Xavier Santolaria
2005-10-12Fix mget directory traversal vulnerability. From NetBSD. CAN-2002-1345.Otto Moerbeek
ok millert@ deraadt@, prodding by david@
2005-10-11bz #1076 set SO_REUSEADDR on X11 forwarding listner sockets, preventingDamien Miller
bind() failure when a previous connection's listeners are in TIME_WAIT, reported by plattner AT inf.ethz.ch; ok dtucker@
2005-10-11bit more consistency in the list of key bindings;Jason McIntyre
ok kjell@
2005-10-11sync options somewhat, make -m format a little nicer, and correct theJason McIntyre
grammar for its description; ok joris@
2005-10-11close the RCSFILE on error, so we don't leak memory;Joris Vink
2005-10-11zap unused variable `dflag'Niall O'Higgins
2005-10-11- support -d <date> option in ci.Niall O'Higgins
ok joris@
2005-10-11correctly set the filename by setting the diff_file variable;Joris Vink
fixes the (null) stuff seen when using rcsdiff; ok niallo@
2005-10-11export diff_file variable so it can be set from without diff functions;Joris Vink
ok niallo@
2005-10-11fix undo BUGS entry. ok deraadt@Kjell Wooding
2005-10-11document a few more things; kjell okTheo de Raadt
2005-10-11prevent trashing of errno in signal handlerTheo de Raadt
2005-10-11A while back, undo records were moved from the BUFFER struct to MGWIN.Kjell Wooding
This is nonsensical, and utterly broken if you are undo-ing across multiple buffers. Change them back to being associated with the BUFFER struct. (effectively, just revert the original change) ok deraadt@
2005-10-11Allow the more traditional emacs keybindings during search/replace, tooKjell Wooding
(i.e. 'y' to accept, 'n' to skip, and <CR> to end) ok deraadt@, cloder@
2005-10-11Enable the 'next-error' (C-x `) keybinding by default.Kjell Wooding
Niklas, this one is for you. ok deraadt@, cloder@
2005-10-11Be more explicit in error prompt. ok deraadt.Kjell Wooding
2005-10-11free logrev on error;Joris Vink
2005-10-11more debug stuff i forgot to take out, i blame the dominican sun!Joris Vink
2005-10-11remove debug cruft;Joris Vink
2005-10-11fix patching in rcs_getrev();Joris Vink
2005-10-10sync with realityJoris Vink
2005-10-10support -mrevision:logmessage; used to set a log message of a revisionJoris Vink
to the specified value; ok niallo@
2005-10-10add rcs_rev_setlog() in the RCS api; used for setting log messagesJoris Vink
of a revision to a specific value; ok niallo@
2005-10-10more words; janus@area319.deTheo de Raadt
2005-10-10- editors remote handlerXavier Santolaria
- minor consistency tweaks
2005-10-10getlogin(2) sets errno;Xavier Santolaria
2005-10-10- update `-l' and `-u' descriptions to include optional <rev>Niall O'Higgins
- update SYNOPSIS for the same thing
2005-10-10- support <rev> parameter to `-l' and `-u' options.Niall O'Higgins
- sync checkin_usage(). note that with OpenRCS you must do `ci -l -- <file>' and `ci -u -- <file>' when using bare arguments because our getopt(3) is POSIX compliant.
2005-10-10make sure that revision passed on command line is greater than HEAD.Niall O'Higgins
2005-10-10better symbol listing in RCS files;Joris Vink
2005-10-10exit(3) is preferred over return from main().Niall O'Higgins
ok joris@
2005-10-10ensure that the user has a lock on the correct revision before allowingNiall O'Higgins
check-in. ok joris@
2005-10-10use rd_next in rcs_getrev() when patching to get to a revisionJoris Vink
instead of just decrementing the revision number, as the previous revision doesn't always follow the current revision - 1 rule. ok niallo@
2005-10-10correctly fill in the rd_next field in rcs_rev_add();Joris Vink
ok niallo@
2005-10-10sync checkout_usage();Niall O'Higgins
2005-10-10- update `-l' `-r' and `-u' descriptions to include optional <rev>Niall O'Higgins
- update SYNOPSIS for the same thing
2005-10-10- set permissions on checked out files correctlyNiall O'Higgins
- support bare `-u' and `-l' options which will check out HEAD. note that with OpenRCS you must do `co -l -- <file>' and `co -u -- <file>' when using bare arguments because our getopt(3) is POSIX compliant. ok joris@
2005-10-10add rcsnum_dec() api call, decreases a revision number by one.Joris Vink
ok niallo@
2005-10-10fix regression I introduced in 4.2: X11 forwardings initiated afterDamien Miller
a session has exited (e.g. "(sleep 5; xterm) &") would not start. bz #1086 reported by t8m AT centrum.cz; ok markus@ dtucker@
2005-10-09fix cvs_log() so it doesn't segfault when called beforeJoris Vink
cvs_command is set. problem found by & discussed with Nuno Morgadinho thanks!
2005-10-09if -r is not specified, we need to set newrev to file->rf_head.Niall O'Higgins
simpler fix than what i had in mind pointed out by joris.
2005-10-09if there is a problem generating the diff for one of the files, continueNiall O'Higgins
to process other files but eventually exit with status 2. this mimics GNU rcs behaviour. ok joris@
2005-10-09only get the log message when it's not specified on the command-line;Joris Vink
noticed by niallo@
2005-10-09simplify if() conditions;Joris Vink
ok niallo@
2005-10-09fix 2 off-by-one's which was causing us a whole load of crap;Joris Vink
ok niallo@
2005-10-09- document `-r' switch as a single option instead of two distinct options.Niall O'Higgins
- sync with checkin_usage() input from jmc@