summaryrefslogtreecommitdiffstats
path: root/contrib/cvs/src
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge parser fix from vendor branch (rev 1.1.1.16)des2004-05-191-2/+2
| |
* | Change WriteTemplate to take const char * args.peter2004-04-152-8/+4
| | | | | | | | | | | | The Name_Root() call seems to be defunct, remove it because it was causing compile problems. The real magic seems to be in the Parse_Info() callback (which was also updated for const char * args).
* | Fix merge typo. Add missing ",".peter2004-04-151-1/+1
| |
* | Initial merge of cvs-1.11.5 -> 1.11.15 changes onto mainlinepeter2004-04-1522-2893/+3198
| |
* | This commit was generated by cvs2svn to compensate for changes in r128266,peter2004-04-1549-2784/+8837
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import cvs-1.11.15peter2004-04-1571-5677/+12042
| |
* | Merge security fix from vendor branch (revision 1.1.1.14).nectar2004-01-211-4/+19
| |
* | This commit was generated by cvs2svn to compensate for changes in r124793,nectar2004-01-211-0/+11
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Incorporate two security fixes from later versions of CVS.nectar2004-01-212-4/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | From the NEWS file of cvs 1.11.11: * pserver can no longer be configured to run as root via the $CVSROOT/CVSROOT/passwd file, so if your passwd file is compromised, it no longer leads directly to a root hack. Attempts to root will also be logged via the syslog. * Malformed module requests could cause the CVS server to attempt to create directories and possibly files at the root of the filesystem holding the CVS repository. Filesystem permissions usually prevent the creation of these misplaced directories, but nevertheless, the CVS server now rejects the malformed requests. Obtained from: ccvs.cvshome.org
| * This file is gone on the vendor branch and no longer referenced in thepeter2003-01-211-79/+0
| | | | | | | | source.
* | Add "blame" as an "annotate" alias for interoperability with subversion.obrien2003-07-071-1/+1
| |
* | Add support for OpenBSD extensions to the $CVSROOT/config syntax.des2003-03-201-0/+21
| | | | | | | | | | Approved by: peter Obtained from: OpenBSD
* | Turn off Checkin-prog and Update-prog.peter2003-01-211-2/+2
| |
* | This commit was generated by cvs2svn to compensate for changes in r109661,peter2003-01-211-79/+0
| | | | | | | | which included commits to RCS files with non-trunk default branches.
* | Merge cvs-1.11.2.1-20021201 -> 1.11.5 changes onto mainlinepeter2003-01-2110-102/+91
| |
* | This commit was generated by cvs2svn to compensate for changes in r109655,peter2003-01-2118-35/+132
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import cvs-1.11.5 onto vendor branchpeter2003-01-2128-137/+223
| |
* | Merge 1.11.2 -> 1.11.2.1-20021201 changes onto mainlinepeter2002-12-0220-632/+420
| | | | | | | | Approved by: re
* | This commit was generated by cvs2svn to compensate for changes in r107484,peter2002-12-0228-1170/+1500
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import cvs-1.11.2.1 as of 2002/12/01 onto vendor branch. This fixes allpeter2002-12-0245-1586/+1919
| | | | | | | | | | | | | | | | of the bugs that I know of. We've been running a slightly older version of this on freefall/repoman, where it was afflicted by a silly merge error on my part (fixed). Approved by: re
* | Fix a cvs server bug introduced in 1.11.2, in the words of the author:peter2002-09-021-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | --- Fix communication hanging in communication shutdown phase, caused by at least older CVS clients (version < 1.11.2) and a semantically incorrect usage of getc() by the server. --- getc() was being used on a blocking socket/pipe. Submitted by: rse
* | Repo copy these files to the bmake area, these are not part of thepeter2002-09-022-112/+0
| | | | | | | | | | cvs vendor release and should not have been 'cvs add'ed there in the first place.
* | Remove these files from the vendor branch, they are no longer in 1.11.2peter2002-09-021-86/+0
| |
* | Initial merge of 1.11.1p1 -> 1.11.2 changes onto mainlinepeter2002-09-0216-684/+1052
| |
* | This commit was generated by cvs2svn to compensate for changes in r102840,peter2002-09-0228-720/+3295
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import cvs-1.11.2 onto vendor branchpeter2002-09-0244-1381/+4381
| | | | | | | | Obtained from: http://www.cvshome.org/
| * Fix the HAVE_KERBEROS case. It seems somebody got carried awaypeter2001-08-201-2/+2
| | | | | | | | | | | | | | with cut/paste in the last release. Submitted by: Makoto MATSUSHITA <matusita@jp.FreeBSD.org> Obtained from: http://ccvs.cvshome.org/source/browse/ccvs/src/client.c.diff?r1=1.302&r2=1.303
| * Generate version.c on the fly rather than using a generated file.peter2001-08-101-86/+0
| |
| * Get the version source from the (more) correct place.peter2001-08-101-526/+0
| | | | | | | | Remove the obsolete cvsbug.sh script
| * Remove file obsoleted in 1.11.1p1 importpeter2001-08-101-764/+0
| |
* | Always upload new files, even if the timestamps match. This is a workaroundfenner2002-07-081-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | for the trouble that DES and I had with MFCs: when "cvs update -jfoo -jbar" creates a new file, it sets the version to 0 ("new") but sets the timestamp in the Entries file to the timestamp of the file that's new on the branch. The CVS client doesn't upload files whose timestamps match with the Entries file, so these new files don't get uploaded to the server and the server fails when trying to check them in. PR: bin/40227 Approved by: peter MFC after: 2 weeks
* | Implement comprehensive CVS/Template support to complement the Templatedillon2001-09-155-11/+110
| | | | | | | | | | | | | | | | support that already exists for checkout. The -T option for cvs update and cvs checkout may be used to cause CVS to retrieve/update the checkin template when possible. MFC after: 1 week
* | Implement -j for cvs diff, allowing tag:date based diffs (normally date-baseddillon2001-09-151-25/+56
| | | | | | | | | | | | diffs are against the head branch only). MFC after: 1 week
* | Merge vendor branch onto mainline (try to fix HAVE_KERBEROS)peter2001-08-201-2/+2
| |
* | Revert part of the 1.11->1.11.1p1 change. Put the blank line back inpeter2001-08-131-0/+2
| | | | | | | | | | the beginning of constructed log messages being passed to $EDITOR. This is where folks start typing.
* | This commit was generated by cvs2svn to compensate for changes in r81422,peter2001-08-101-86/+0
| | | | | | | | which included commits to RCS files with non-trunk default branches.
* | This commit was generated by cvs2svn to compensate for changes in r81420,peter2001-08-101-526/+0
| | | | | | | | which included commits to RCS files with non-trunk default branches.
* | This commit was generated by cvs2svn to compensate for changes in r81412,peter2001-08-101-764/+0
| | | | | | | | which included commits to RCS files with non-trunk default branches.
* | Initial merge of cvs-1.11 -> 1.11.1p1 changes onto mainline. There ispeter2001-08-1017-1201/+1580
| | | | | | | | still some suspicious and/or broken stuff to fix yet.
* | This commit was generated by cvs2svn to compensate for changes in r81404,peter2001-08-1038-2993/+8397
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import cvs-1.11.1p1 onto vendor branchpeter2001-08-1055-4172/+9974
| |
* | Flip the default for CVS_RSH to "ssh". I am tired of getting asked thispeter2001-02-231-2/+2
| | | | | | | | all the time, and IMHO it is long overdue.
* | Fix a bug that shows up when checking out files by date with thejdp2000-10-291-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | "-D date" command line option. There is code in the original to handle a special case. If the date search finds revision 1.1 it is supposed to check whether revision 1.1.1.1 has the same date stamp, which would indicate that the file was originally brought in with "cvs import". In that case it is supposed to return the vendor branch version 1.1.1.1. However, there is a bug in the code. It actually compares the date of revision 1.1 for equality with the date given on the command line -- clearly wrong. This commit fixes the coding bug. There is an additional bug which is _not_ fixed in this commit. The date comparison should not be a strict equality test. It should allow a fudge factor of, say, 2-3 seconds. Old versions of CVS created the two revisions with two separate invocations of the RCS "ci" command. We have many old files in the tree in which the dates of revisions 1.1 and 1.1.1.1 differ by 1 second. Approved by: peter
* | Merge changes from 1.10.7 -> 1.11 into mainline. Note that the oldpeter2000-10-0215-1116/+1213
| | | | | | | | anoncvs no-password hack is gone and is replaced by the official version.
* | This commit was generated by cvs2svn to compensate for changes in r66525,peter2000-10-0234-1229/+3293
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Import cvs-1.11 onto vendor branch.peter2000-10-0249-2331/+4505
| |
* | Use X x X's in mkstemp().kris2000-01-101-1/+1
| |
* | I believe this fixes the problem certain people have been seeing when doingpeter2000-01-061-1/+5
| | | | | | | | | | | | | | checkouts from a local repo and committing via remote cvs. A cvs -d override of the mismatched CVS/Root files was missing. This is a client side fix, I'd appreciate it if the folks having trouble with this would update their cvs client and pay particular attention next time..
* | Take a shot at using mkstemp() since we have a __warn_references() onpeter1999-12-111-0/+18
| | | | | | | | the other temporary file creation functions..
* | Merge error. rcs_lockfile is freed after unlock.peter1999-12-111-2/+0
| |
OpenPOWER on IntegriCloud