summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2005-12-30do not use .Pp before displays;Jason McIntyre
2005-12-30- simplify an unecessary if/else construct in rcs_open()Niall O'Higgins
spotted by joris@
2005-12-30consistency tweak, from daniel matic;Jason McIntyre
2005-12-30more code cleanup, ok niallo@ and xsa@Joris Vink
2005-12-30- realloc() -> xrealloc(), was missed in the original sweep.Niall O'Higgins
2005-12-30minor style nits;Xavier Santolaria
2005-12-30add channel output filter interface.Reyk Floeter
ok djm@, suggested by markus@
2005-12-30adjust some thruth in a comment.Joris Vink
2005-12-30major cleanup of the functions handling the remote cvs protocol.Joris Vink
makes the code a lot more readable and understandable. ok xsa@ and niallo@
2005-12-30spacingJoris Vink
2005-12-30pass LP_ABORT to cvs_vlog() instead of LP_ERR.Joris Vink
2005-12-29we were wrongly decrementing cvs_mtskt_depth when handlingJoris Vink
a '-' MT response. this caused checkout and update to fail remotely. caught by xfree().
2005-12-29correction from ray lai;Jason McIntyre
ok espie
2005-12-29add an ENVIRONMENT section, and document EDITOR and VISUAL;Jason McIntyre
ok tedu
2005-12-28use 'break-in' for consistency; ok deraadt@ ok and input jmc@Kevin Steves
2005-12-28Use the DIP macros to uniformly access fields from UFS1 and UFS2 dinodes.Pedro Martelletto
No functional change, okay tedu@.
2005-12-28don't use rf_pdata when it's not allocated.Joris Vink
2005-12-28Pass sysctl() the buffer, not a pointer to the buffer. From mpech@Todd C. Miller
2005-12-28spacingTheo de Raadt
2005-12-27fix possible overflow in the tabstops[] array. ok miod@Moritz Jodeit
2005-12-27enter sdiffTheo de Raadt
2005-12-27- rlog(1) needs RCS_PARSE_FULLY too.Niall O'Higgins
2005-12-27- optimise rcsnum_tostr(). we call this function a LOT and using multipleNiall O'Higgins
snprintf()s in it is SLOW. second of a few important performance improvements. ok joris@
2005-12-27- implement lazy-parsing of rcs files, that is only parse as much as weNiall O'Higgins
need. this can save us much work, particularly with very large rcs files. first of a few important performance improvements. ok joris@
2005-12-27+.Xr sdiff 1 ,Jason McIntyre
2005-12-27add a SEE ALSO section;Jason McIntyre
2005-12-27- kill trailing whitespaceJason McIntyre
- wording tweaks - put sections in the right order
2005-12-27move the BUGS section to CAVEATS, since both the points listedJason McIntyre
are hardly bugs; prompted by j. c. roberts; ok krw millert ian
2005-12-27remove xstrtonumTed Unangst
2005-12-27shorten main initializationTheo de Raadt
2005-12-27goto labels after case statements make lint happierTheo de Raadt
2005-12-27INT_MAX should be big enough for a widthTed Unangst
2005-12-27remove debug modeTed Unangst
2005-12-27add DPADDTheo de Raadt
2005-12-27sizeof char is always 1Ted Unangst
2005-12-27if an allocation function fails, err will print "cannot allocate memory"Ted Unangst
for us, just add the name of the function
2005-12-27close can't really fail, don't bother checkingTed Unangst
2005-12-27remove broken assert on argc, and put argc check in right placeTed Unangst
2005-12-27variables in header should be extern, defined in a c file.Ted Unangst
if cast for free is needed because of const nastiness, at least cast to void *
2005-12-27OpenBSD tagsTed Unangst
2005-12-27add a public domain sdiff implementation contributed by ray laiTed Unangst
2005-12-24add an argument to cvs_chdir() which enables or not the removalXavier Santolaria
of the directory we just chdir'd to. Useful when the function fails especially for the server mode and its temporary directory. This way it's not left behind on exit. ok joris@.
2005-12-24error message consistency in fatal();Xavier Santolaria
2005-12-24remove useless cvs_buf_alloc() failure checks;Joris Vink
2005-12-24we should be calling cvs_vlog(); to at least get some decent output;Joris Vink
2005-12-24- support for -n -N and -t;Joris Vink
- check for path truncation; - do not pollute flags being passed to rcs_open() with local flags; - fix rcs initialization stuff;
2005-12-24eliminate some code duplicated in privsep and non-privsep paths, andDamien Miller
explicitly clear SIGALRM handler; "groovy" deraadt@
2005-12-23less mark up for -c;Jason McIntyre
2005-12-23- sync the description of -e w/ synopsisJason McIntyre
- simplify the description of -I - note that -I is only available if support compiled in, and that it isn't by default feedback/ok djm@
2005-12-23support co -d, which checks out the first revision who'sJoris Vink
date is less than or equal to the given date.