summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2005-01-20- knfJared Yanovich
- check read/write/etc. calls for errors - use constants instead of hardcoded pathnames - better variable types - add usage output suggestions from various, ok ian
2005-01-19Add elf{32,64}_load_phdrs() for loading program headers.Alexander Yurchenko
ok mickey@
2005-01-19more `cvs update' bits; help and ok jmcXavier Santolaria
2005-01-19Have keyboard-interactive code call the drivers even for responses forDarren Tucker
invalid logins. This allows the drivers themselves to decide how to handle them and prevent leaking information where possible. Existing behaviour for bsdauth is maintained by checking authctxt->valid in the bsdauth driver. Note that any third-party kbdint drivers will now need to be able to handle responses for invalid logins. ok markus@
2005-01-18document `cvs remove' flags; ok jmcXavier Santolaria
2005-01-17Make debugging output continue after reexec; ok djm@Darren Tucker
2005-01-17document `cvs commit' flags; ok jmcXavier Santolaria
2005-01-17Correct spelling: SCHNOOR->SCHNORR; ok djm@Darren Tucker
2005-01-16document the `cvs annotate' flags; ok jfb, help and ok jmc.Xavier Santolaria
2005-01-15Operator for comparisons is '==' and not '='.Marc Balmer
ok naddy@
2005-01-15hatrickJolan Luff
2005-01-14minor knf and cleanup, and remove unneeded extern declarations, theyJean-Francois Brousseau
are now in cvs.h
2005-01-14sprinkle more error reporting and add a trace when sending a fileJean-Francois Brousseau
to the server
2005-01-14support the -D option to the tag command and sync usage for the tagJean-Francois Brousseau
command from Joris Vink, with modifications by me
2005-01-14better descr for `cvs status'; help and ok jmcXavier Santolaria
2005-01-14stupid me, no need to reinit the queueJean-Francois Brousseau
pointed by henning@
2005-01-14when removing the last entry from the tail queue, reinitialize theJean-Francois Brousseau
queue for sanity, and make sure that the current pointer is set to the next item if it points to the item being removed. fixes a crash reported by brad@, tested by joris and brad@
2005-01-14unused cruftJean-Francois Brousseau
2005-01-14Allow netstat to print PIM statistics.Ryan Thomas McBride
From Pavlin Radoslavov <pavlin@icir.org> ok deraadt@ brad@
2005-01-14Couldn't resist this one...Marco Peereboom
2005-01-14tweak the output of rcs_kflag_usage() to avoid line wrappingJean-Francois Brousseau
2005-01-14missing space and kill a gcc warningJean-Francois Brousseau
2005-01-13resurrect the -N and -p options to the diff commandJean-Francois Brousseau
requested and tested by brad@, thanks!
2005-01-13add rcs_kflag_usage() to display the various keyword expansion modesJean-Francois Brousseau
supported by the -k argument
2005-01-13tidy and remove debugging outputJean-Francois Brousseau
2005-01-13Close what you open: obvious fix, ok jared@, more to followIan Darwin
2005-01-13zlib abstraction code, first part of support for compressionJean-Francois Brousseau
2005-01-13more widespread use of cvs_msg, and free it when we are doneJean-Francois Brousseau
diff by Joris Vink and me
2005-01-13more extern declarations for the common variablesJean-Francois Brousseau
2005-01-13fix the annotate usage (there is no -F flag) and add the missing bitsJean-Francois Brousseau
so the -r and -f arguments are supported, and complain if both -D and -r are given. GNU CVS silently accepts to have both specified, but does not produce output as a result.
2005-01-13Handle all isspace() chars the same for -w and -b. ok millert@ markus@Otto Moerbeek
2005-01-13prettierJean-Francois Brousseau
2005-01-13* get rid of useless headersJean-Francois Brousseau
* fix the handlers for Root, valid-requests, Directory and Set * add a generic request handler for most of the requests expecting a response
2005-01-13when warning about unimplemented handlers, do not attempt to printJean-Francois Brousseau
the errno message string
2005-01-13better descr for `cvs annotate'; help and ok jmc.Xavier Santolaria
2005-01-12use basename(3) instead of mangling the path to figure out theJean-Francois Brousseau
filename ourselves. Removes a bunch of now useless code. spotted by Joris Vink, diff by me
2005-01-12add rcs_kflag_get() to validate kflagsJean-Francois Brousseau
2005-01-11correct unfortunate example which would have squished users' mailbox;Jason McIntyre
from ray at cyth dot net;
2005-01-11no need to call realpath() in adjustname()Henning Brauer
realpath returns an error if cwd is not writeable, and that is quite common with NFS-mounted ~ and sudo mg /etc/something - annoying as hell. realpath is not needed at all here, so zap it. vincent ok
2005-01-11cvs -> CVS; jmc okXavier Santolaria
2005-01-11Close the Entries file we just created upon directory creation. ThisJean-Francois Brousseau
fixes the problem where a checkout would only add entries for directories. from Joris Vink
2005-01-09w(1) does not deal w/ cpu time;Jason McIntyre
from netbsd -r 1.16;
2005-01-09Better error message for `device' command without arguments.Aleksander Piotrowski
help & ok miod@
2005-01-09tidy up FAST STARTUP;Jason McIntyre
2005-01-09better example;Jason McIntyre
2005-01-09better section reference;Jason McIntyre
2005-01-08New shortcuts for commands device (d) and debug (deb)Aleksander Piotrowski
go ahead espie@
2005-01-08Fix for FreeBSD PR#12801 from Sven Verdoolaege (nvi maintainer) via FreeBSDPeter Valchev
(an infinite loop at certain case when options "comment" and "leftright" are used)
2005-01-08Move a line of code which was "obviously" misplaced.Peter Valchev
This fixes a core dump when auto-completing filenames and at least one of the file names is larger than the screen width. from NetBSD PR and fix by Peter Bex in PR#28382
2005-01-08When an error occurs in v_txt(), leave input mode too.Peter Valchev
Otherwise, (among other things) db_get() thinks it can re-use the TEXT buffers when it's not true, leading to a crash because that TEXT buffer will be released just before it is actually used to create a new one. From NetBSD, fixes NetBSD PR#21797.