summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2007-02-06document -D; ok jmc@Otto Moerbeek
2007-02-06remove a comment which is no longer true; ok ottoJason McIntyre
2007-02-06sync synopsis and usage();Jason McIntyre
2007-02-06+.Ex -std odJason McIntyre
2007-02-06sort options and sync usage();Jason McIntyre
2007-02-06switch to .Ex and remove some unnecessary brackets;Jason McIntyre
2007-02-06fix some dodgy displays;Jason McIntyre
2007-02-06one more epoch -> Epoch and a grammar fix; ok millertJason McIntyre
2007-02-06discuss consistently "the Epoch";Jason McIntyre
2007-02-06replace strl* overload and xstrdup() misuse by xsnprintf();Xavier Santolaria
OK joris@.
2007-02-06document the `+' interactive command more fully;Jason McIntyre
help/ok otto
2007-02-06sort options;Jason McIntyre
2007-02-06Compact help screen a bit so it fits in 24 lines again. Based on aOtto Moerbeek
diff from Mark Lumsden.
2007-02-04Complain of the user specifies a negative number for the 's' command.Otto Moerbeek
From Mark Lumsden.
2007-02-04Introducing the '+' interactive command to reset all filters.Otto Moerbeek
From Mark Lumsden. ok millert@ deraadt@ simon@
2007-02-04Use the right HEADNAME. Sometimes compiler warnings should not beOtto Moerbeek
ignored. ok xsa@ joris@
2007-02-04actully use a default value when we say so. from Mark LumsdenOtto Moerbeek
2007-02-04long and long long is not the same on 32 bits archsOtto Moerbeek
2007-02-04dont bother trying to parse empty lines as dates.Joris Vink
cuts away some cpu time. from Tobias Ulmer, thanks a million!
2007-02-03Save and restore not only scale, but ibase as well. Problem noted myOtto Moerbeek
Karel Kulhavy.
2007-02-03Plug memory leak.Ray Lai
OK otto@.
2007-02-02Remove cb_cur or replace with cb_buf; cb_cur was the same as cb_bufRay Lai
most of the time and was never of much use. OK niallo@.
2007-02-02Remove unused and buggy {cvs,rcs}_buf_set functions.Ray Lai
Bugginess pointed out and fix provided by Pierre Riteau. OK joris@.
2007-02-01When writing an rcs file, create the temp file next to the targetOtto Moerbeek
file and then rename. Avoids inter-filesystem copy and fixes a potential rcs file truncation when the target fileystem becomes full. While there, use fchmod instead of chmod. ok xsa@ joris@
2007-02-01change mode of a newly created rcs file in the repository to 0444Otto Moerbeek
ok jorix@ xsa@
2007-02-01When checking to see if a checked-out copy of the file is the sameTodd C. Miller
as what is in the repo, expand keywords before doing the diff. OK xsa@
2007-02-01handle errors reading .pc files in --list gracefully.Marc Espie
2007-02-01add support for [-k mode]; tests/ok otto@.Xavier Santolaria
2007-02-01add support for [-k mode]; tests/input/ok otto@.Xavier Santolaria
2007-01-31snprintf() -> xsnprintf()Xavier Santolaria
2007-01-31Document $GZIP environment variable.Ray Lai
OK jmc@ and millert@.
2007-01-29sync the -f description w/ its synopsis;Jason McIntyre
2007-01-29sync usage(); spotted by Igor SobradoJason McIntyre
2007-01-29introduce xsnprintf(); OK otto@ joris@.Xavier Santolaria
2007-01-29no longer spit out that you can add new files using 'cvs add',Joris Vink
it is pretty obvious on itself. ok niallo@ xsa@
2007-01-29whitespace, no change in code produced by bc -dlOtto Moerbeek
2007-01-28hey look, i found another debug printf from my merging stuff!Joris Vink
kill-zap-nuke-remove-delete it.
2007-01-28do not overwrite a file that is modified but has a sticky tag setJoris Vink
when running update -A, instead merge in the changes. 'kay xsa@
2007-01-28Accept a leading 0x for the -n length parameter.Miod Vallat
Correctly check for out-of-bounds values for -s skip parameter, and use strtoll to parse it instead of strtol since this is an off_t value.
2007-01-28In doskip(), do not access an uninitialized variable in the statok == 0 caseMiod Vallat
(introduced in r1.9)
2007-01-28remove debug printfs that sneaked in.Joris Vink
2007-01-28add merging support in both local and remote sides.Joris Vink
tested by many, thanks.
2007-01-27- do not try to add non-existing filesJoris Vink
- do not overwrite the contents of the file when the file was removed and you try to re-add it. ok otto@
2007-01-27when we specify the 'f' flag do not bother removing files thatJoris Vink
dont exist on disk anyway, and when removing a file that has been added but not commited the correct file_status is FILE_REMOVE_ENTRY and not FILE_ADDED. ok otto@
2007-01-27missed a case for CVS_CMD_ADD from last commitJoris Vink
2007-01-27by default let cvs_file_classify complain about certain casesJoris Vink
and fix some warnings that should not come up for certain commands. ok niallo@ otto@
2007-01-27preserve flags in Entries in the remote case. ok xsa@ joris@Otto Moerbeek
2007-01-27mktime() produces local time, so add in tm_gmtoff to get UTC.Otto Moerbeek
ok xsa@ and joris@
2007-01-26more fixe size buffers on the stack. ok xsa@ joris@Otto Moerbeek
2007-01-26- support [-k mode] for the add commandXavier Santolaria
- do not let the file keyword expension options (-k) disappear from the Entries file when doing a commit/update/checkout - be sure the expension mode gets written to the RCS file when a file is added/committed in the first place problems raised by otto@; tests/ok otto@ and joris@.