Check-in [2e7cbb2829]
Not logged in
Overview

SHA1 Hash:2e7cbb2829f167c5317f16aa139761287549acae
Date: 2007-10-26 06:11:21
User: aku
Comment:Fixed one of the cross-reference checks.
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified tools/cvs2fossil/lib/c2f_pcollrev.tcl from [1a642fd724] to [2f4f8082a3].

@@ -451,11 +451,12 @@
 		SELECT F.name, R.rev
 		FROM revision R, revision P, file F
 		WHERE R.fid = F.fid
 		AND   R.bparent IS NOT NULL
 		AND   R.parent IS NOT NULL
-		AND   R.parent = P.child
+		AND   R.parent = P.rid
+		AND   P.child = R.rid
 		;
 	    }
 	# Find all revisions with a non-NTDB child which are not on
 	# the NTDB.
 	Check \