summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2005-12-09unused vars, my bad;Joris Vink
2005-12-09Another case theo reminded me ofChad Loder
2005-12-09Don't ever complain when assigning a char literal to a char lvalue,Chad Loder
regardless of sign/unsign differences. In other words, even though C treats char literals as ints, if the rvalue is a literal inside single quotes, and the lvalue is any kind of char, then assume the programmer knows what he is doing.
2005-12-08Check fread() return value to get sane error message for too-smallTodd C. Miller
gmon header. Idea from Alexey Dobriyan
2005-12-08new sentence, new line;Jason McIntyre
2005-12-08complete and correct rcs locking functionality,Joris Vink
it was only done partially and as a bonus, completely wrong. seriously guys what was up with that?
2005-12-08two changes to the new ssh tunnel support. this breaks compatibilityReyk Floeter
with the initial commit but is required for a portable approach. - make the tunnel id u_int and platform friendly, use predefined types. - support configuration of layer 2 (ethernet) or layer 3 (point-to-point, default) modes. configuration is done using the Tunnel (yes|point-to-point|ethernet|no) option is ssh_config(5) and restricted by the PermitTunnel (yes|point-to-point|ethernet|no) option in sshd_config(5). ok djm@, man page bits by jmc@
2005-12-08keep options in order;Jason McIntyre
2005-12-08make `!command' a little clearer;Jason McIntyre
ok reyk
2005-12-08oops - forgot to remind tom to update usage();Jason McIntyre
2005-12-07Tweak synopsisTom Cosgrove
ok jmc@
2005-12-07Tidy up month parsing: don't accept "mayor" for "may", or "4x" for "4".Tom Cosgrove
And strptime(3) %b and %B conversions are the same, so don't bother trying both. ok otto@
2005-12-07update the man -k example, and reword for clarity;Jason McIntyre
2005-12-07- avoid line split in SYNOPSISJason McIntyre
- add args to -w - kill trailing whitespace
2005-12-07typoReyk Floeter
2005-12-07reyk forgot to compile with -Werror (missing header)Damien Miller
2005-12-07Remove extra printfsChad Loder
2005-12-07Refactor __attribute__ parsing a bit. This takes us further to being ableChad Loder
to not only consume, but also make sense of gcc __attribute__ syntax.
2005-12-06Add brief instructions on how to use the new tun(4) forwarding overReyk Floeter
OpenSSH with OpenBSD. Please note that tunnel forwarding is still somewhat experimental and specific to the OpenBSD version of OpenSSH. Nevertheless, porting and interoperability is possible due to the availability of a tun(4)-like device for most of the other operating systems. ok jmc@, requested by djm@
2005-12-06Add support for tun(4) forwarding over OpenSSH, based on an idea andReyk Floeter
initial channel code bits by markus@. This is a simple and easy way to use OpenSSH for ad hoc virtual private network connections, e.g. administrative tunnels or secure wireless access. It's based on a new ssh channel and works similar to the existing TCP forwarding support, except that it depends on the tun(4) network interface on both ends of the connection for layer 2 or layer 3 tunneling. This diff also adds support for LocalCommand in the ssh(1) client. ok djm@, markus@, jmc@ (manpages), tested and discussed with others
2005-12-06Clarify: `month' can always be specified as either full orTom Cosgrove
abbreviated month name. ok jmc@ tedu@
2005-12-06Remove fdescfsPedro Martelletto
2005-12-06- new sentence, new lineJason McIntyre
- improve lists - improve EXAMPLES
2005-12-06properly escape space character;Jason McIntyre
from daniel matic;
2005-12-06knf; spaces vs. tabs;Xavier Santolaria
2005-12-06back out -CC change. It breaks lint on most of our architecturesTheo de Raadt
because -CC is something that showed up in a later gcc. This is what happens when a pair of developers do not test on all our architectures.
2005-12-05- repair cvs diff. my date fix was too naive.Niall O'Higgins
2005-12-05hrmz..Xavier Santolaria
2005-12-05ooops, missed that in previous commit; unbreak;Xavier Santolaria
2005-12-05correctly handle `-wfoo' and `-sbar' errors; OK joris@.Xavier Santolaria
2005-12-05Add support for tuning channel and channel set. This allowsRobert Nagy
the user to tune his bktr(4) card with radioctl(4). Also add a -v option prints out the available choices of channel sets. ok mickey@
2005-12-05kill unused var;Xavier Santolaria
2005-12-05oops: forgot to remind tedu to add -T to SYNOPSIS too...Jason McIntyre
2005-12-04support for toggling thread viewing.Ted Unangst
ok brad, hints from jmc
2005-12-04more code cleanup, remove useless flags and parts of codeJoris Vink
that never got used in the first place;
2005-12-04bye obsolete junk;Joris Vink
"go ahead" and "nuke them" niallo@, xsa@
2005-12-03strip any trailing slashes in the received DirectoryJoris Vink
request, to make sure we are compatible with gnu;
2005-12-03ARGSUSED signal handlerTheo de Raadt
2005-12-03- whoops, its -t-string or -tfile, not the other way aroundNiall O'Higgins
- sync checkin_usage() with reality
2005-12-03- document `-t' option.Niall O'Higgins
2005-12-03- add support for -t[description] and -t-[file containing description]Niall O'Higgins
2005-12-03todd@ reminds me:Joris Vink
If you 'vi file.c' and change stuff, then 'make depend && make' you'll have a file.o file most definately more recent than the latest committed version of file.c. Then, if you rm file.c, and cvs update file.c, if 'file.c' is set to the timestamp of the last committed version, a subsequent 'make' will not rebuild the .o file. to fix this we simply use the current timestamp when updating files. thanks todd@!
2005-12-03fix date handling in opencvs, this was broken since the very start.Joris Vink
now, when you checkout a tree with gnu cvs, opencvs no longer sees all the files as modified, and visa versa. this actually makes gnu cvs and opencvs dance together in working copies.
2005-12-03- teach opencvs about Entries.Log and what to do with itJoris Vink
it it exists in the CVS admin dir. - when writing the Entries file write it to Entries.Backup first and then rename it to Entries when the writing was successfull.
2005-12-03respect Q flag in output;Joris Vink
2005-12-03nuke unused vars;Joris Vink
2005-12-03remove unused and useless functions, they just get in the way;Joris Vink
2005-12-03usr.bin/rcs stuff doesn't care about cvs_checkout_rev();Joris Vink
2005-12-03Fix enum types, thanks lintChad Loder
2005-12-03add very basic support for the following stuff:Joris Vink
- checkout in local mode (example: /cvs) - update in local and server mode (example: /cvs and user@host:/cvs) - import in local and server mode (example: /cvs and user@host:/cvs) what remains to be done: - not all options are supported yet, and update cannot pick up newly added files yet. these things are pending and will be commited real soon. - checkout only works locally right now. - fix rcs parsing code so that we don't fucking hog 100% cpu on really BIG BIG BIG ass trees. mainly tested by pedro@ and myself, thanks a lot pedro! "go for it" niallo@