summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2005-03-02document `cvs rtag'; ok joris jmcXavier Santolaria
2005-03-02- rcs_write() is now staticJean-Francois Brousseau
- when setting a new expansion mode, do not attempt to free the previous expansion mode if the pointer is NULL - add a bunch of new functions: * rcs_sym_remove() to remove a symbol * rcs_sym_getrev() to retrieve the revision number of a symbol * rcs_desc_{s,g}et() to manipulate an RCS file's description
2005-03-02- make sure we are using a remote method before callingJoris Vink
cvs_sendreq() and cvs_sendfile(). - don't leak entp on errors. ok jfb@
2005-03-02bz#987: mention ForwardX11Trusted in ssh.1,Damien Miller
reported by andrew.benham AT thus.net; ok deraadt@
2005-03-02ignore hostnames with metachars when hashing; ok deraadt@Damien Miller
2005-03-02fix addition of new hashed hostnames when CheckHostIP=yes;Damien Miller
found and ok dtucker@
2005-03-01google knowsMichael Shalayeff
2005-03-01fix call to rcs_open() so the file gets created, and remove theJean-Francois Brousseau
explicit call to rcs_write(), it is not needed anymore
2005-03-01sort options (no attempt made at synopsis clean up though);Jason McIntyre
spelling (occurance -> occurrence); use prompt before examples; grammar;
2005-03-01sort options;Jason McIntyre
2005-03-01sync usage() w/ man SYNOPSIS;Jason McIntyre
ok markus@
2005-03-01add HashKnownHosts to -o list;Jason McIntyre
ok markus@
2005-03-01sort options and sync usage();Jason McIntyre
2005-03-01whitespace;Jason McIntyre
2005-03-01new sentence, new line;Jason McIntyre
whitespace;
2005-03-01do not mark up punctuation;Jason McIntyre
whitespace;
2005-03-01remove some unneccesary macros;Jason McIntyre
do not mark up punctuation;
2005-03-01add tools for managing known_hosts files with hashed hostnames, includingDamien Miller
hashing existing files and deleting hosts by name; ok markus@ deraadt@
2005-03-01option to hash hostnames output by ssh-keyscan; ok markus@ deraadt@Damien Miller
2005-03-01add support for hashing host names and addresses added to known_hosts files,Damien Miller
to improve privacy of which hosts user have been visiting; ok markus@ deraadt@
2005-03-01bz#413: allow optional specification of bind address for port forwardings.Damien Miller
Patch originally by Dan Astorian, but worked on by several people Adds GatewayPorts=clientspecified option on server to allow remote forwards to bind to client-specified ports. ok markus@
2005-03-01document `cvs rdiff'; ok joris jmcXavier Santolaria
2005-02-28do not forget to call cvs_connect() when we are using a remote cvs server.Joris Vink
ok jfb@
2005-02-28update my email address.Joris Vink
2005-02-28bz#849: document timeout on untrusted x11 forwarding sessions. Reported byDamien Miller
orion AT cora.nwra.com; ok markus@
2005-02-27- only send exported vars (based on a diff from Solar Designer)Otto Moerbeek
- fix some buffer overflows (also some Solar Designer input) ok deraadt@ cloder@
2005-02-27Many improvements to the RCS support:Jean-Francois Brousseau
- make it possible to specify creation and the file mode in rcs_open() - implicitly write the contents to disk on rcs_close() if the RCS handle has been changed - fix a bug in the output of the `expand' keyword - add functions to retrieve and modify the expansion mode - rcs_parse() shouldn't be available to the outside - empty string instead of `(null)' if there is no description ok Joris
2005-02-26spelling fixesDavid Krause
2005-02-25- switch to rcsnum_parse() where appropriateJean-Francois Brousseau
- make rcsnum_parse() fail if it encounters an invalid character
2005-02-25exit with an error message if cvs_file_init() failsJean-Francois Brousseau
2005-02-25add rcsnum_parse() to simplify the most common caseJean-Francois Brousseau
2005-02-25document `cvs diff' options; input/ok jmc; ok jfb Joris Vink;Xavier Santolaria
2005-02-25add /etc/motd and $HOME/.hushlogin to FILES;Jason McIntyre
from michael knudsen;
2005-02-24Store result of snprintf() in a signed type and check it for -1.Jonathan Gray
Do not depend on errno being set for snprintf, use errx() instead of err(). ok otto@, earlier version ok deraadt@ some time ago
2005-02-24remove docompress() completely in case of -DSMALL andMoritz Jodeit
replace it with a better error message. ok millert@ henning@
2005-02-22more error checking on protocol calls when running in client modeJean-Francois Brousseau
2005-02-22use the file's name, and not its full path, when building the path toJean-Francois Brousseau
the RCS file in the repository spotted by pvalchev@
2005-02-22unused variableJean-Francois Brousseau
2005-02-22get rid of code that shouldn't have made it in thereJean-Francois Brousseau
2005-02-22Split the cvs daemon into two different processes: cvsd and cvsd-child.Jean-Francois Brousseau
The cvsd process only takes care of managing children and repository locks, while the child handles all requests made to access or modify the contents of the repository. This will allow us to take advantage of randomized library remapping and new propolice cookies, and minimizes the amount of code that can run with elevated privileges. Still work in progress. suggested by deraadt@
2005-02-22- support -c and -s to retrieve the module listJean-Francois Brousseau
- silently accept most of the other options supported by checkout - do not abandon all hope if the `expand-modules' request fails
2005-02-22set the standard request socket path to /var/run/cvsd.sockJean-Francois Brousseau
from pvalchev@
2005-02-22give the `noop' request its own handler, it definitely does not needJean-Francois Brousseau
to be in the generic command handler, and add a dummy handler for the `expand-modules' request
2005-02-22when a log message is generated by the server and is sent toJean-Francois Brousseau
standard error, instead redirect it to standard out with the appropriate `E' prefix to indicate an error response message
2005-02-22do not leak a file pointer in case of errorJean-Francois Brousseau
from Joris Vink
2005-02-22sort options; sync usage();Jason McIntyre
2005-02-22sort options; sync usage();Jason McIntyre
2005-02-21document `cvs log'; ok jmcXavier Santolaria
2005-02-21use a standard hostname in EXAMPLES (host.example.com), which alsoJason McIntyre
fixes an error; from ray;
2005-02-21tweaks;Jason McIntyre