diff options
| author | Ulf Lilleengen <lulf@FreeBSD.org> | 2009-01-04 18:18:59 +0000 |
|---|---|---|
| committer | Ulf Lilleengen <lulf@FreeBSD.org> | 2009-01-04 18:18:59 +0000 |
| commit | efb1385dec84acd19deee65892f2d09db19c4789 (patch) | |
| tree | 784587a4f6e1af574f348bf46f8d78a4be9c99ba | |
| parent | 5aaa6a085942ddcec6de51209f6d4e1c8782a70f (diff) | |
Notes
| -rw-r--r-- | contrib/csup/rcsfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/csup/rcsfile.c b/contrib/csup/rcsfile.c index 4f9b085b7fef..0d823e8a45e5 100644 --- a/contrib/csup/rcsfile.c +++ b/contrib/csup/rcsfile.c @@ -1243,7 +1243,7 @@ rcsfile_insertdelta(struct branch *b, struct delta *d, int trunk) } else { /* XXX: here we depend on the date being set, but it * should be before this is called anyway. */ - if (rcsnum_cmp(d->revdate, d2->revdate) < 0) { + if (rcsnum_cmp(d->revnum, d2->revnum) < 0) { LIST_INSERT_BEFORE(d2, d, delta_next); return; } |
