Fossil SCM
Fixed one of the cross-reference checks.
Commit
2e7cbb2829f167c5317f16aa139761287549acae
Parent
2434ad3bfe86065…
1 file changed
+2
-1
| --- tools/cvs2fossil/lib/c2f_pcollrev.tcl | ||
| +++ tools/cvs2fossil/lib/c2f_pcollrev.tcl | ||
| @@ -451,11 +451,12 @@ | ||
| 451 | 451 | SELECT F.name, R.rev |
| 452 | 452 | FROM revision R, revision P, file F |
| 453 | 453 | WHERE R.fid = F.fid |
| 454 | 454 | AND R.bparent IS NOT NULL |
| 455 | 455 | AND R.parent IS NOT NULL |
| 456 | - AND R.parent = P.child | |
| 456 | + AND R.parent = P.rid | |
| 457 | + AND P.child = R.rid | |
| 457 | 458 | ; |
| 458 | 459 | } |
| 459 | 460 | # Find all revisions with a non-NTDB child which are not on |
| 460 | 461 | # the NTDB. |
| 461 | 462 | Check \ |
| 462 | 463 |
| --- tools/cvs2fossil/lib/c2f_pcollrev.tcl | |
| +++ tools/cvs2fossil/lib/c2f_pcollrev.tcl | |
| @@ -451,11 +451,12 @@ | |
| 451 | SELECT F.name, R.rev |
| 452 | FROM revision R, revision P, file F |
| 453 | WHERE R.fid = F.fid |
| 454 | AND R.bparent IS NOT NULL |
| 455 | AND R.parent IS NOT NULL |
| 456 | AND R.parent = P.child |
| 457 | ; |
| 458 | } |
| 459 | # Find all revisions with a non-NTDB child which are not on |
| 460 | # the NTDB. |
| 461 | Check \ |
| 462 |
| --- tools/cvs2fossil/lib/c2f_pcollrev.tcl | |
| +++ tools/cvs2fossil/lib/c2f_pcollrev.tcl | |
| @@ -451,11 +451,12 @@ | |
| 451 | SELECT F.name, R.rev |
| 452 | FROM revision R, revision P, file F |
| 453 | WHERE R.fid = F.fid |
| 454 | AND R.bparent IS NOT NULL |
| 455 | AND R.parent IS NOT NULL |
| 456 | AND R.parent = P.rid |
| 457 | AND P.child = R.rid |
| 458 | ; |
| 459 | } |
| 460 | # Find all revisions with a non-NTDB child which are not on |
| 461 | # the NTDB. |
| 462 | Check \ |
| 463 |