Mercurial > hg-stable
changeset 51489:dcb00d5c397a stable
admin-verify: pass p1 down to the dirstate function
This was forgotten and can break with certain kinds of corruption.
author | Raphaël Gomès <rgomes@octobus.net> |
---|---|
date | Mon, 06 May 2024 12:31:29 +0200 |
parents | c1b6b8b03e48 |
children | 2a27b921cd91 |
files | mercurial/admin/verify.py |
diffstat | 1 files changed, 1 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/admin/verify.py Mon May 06 11:27:29 2024 +0200 +++ b/mercurial/admin/verify.py Mon May 06 12:31:29 2024 +0200 @@ -37,8 +37,7 @@ is_narrow = requirements.NARROW_REQUIREMENT in repo.requirements narrow_matcher = repo.narrowmatch() if is_narrow else None - - for err in repo.dirstate.verify(m1, m2, narrow_matcher): + for err in repo.dirstate.verify(m1, m2, parent1, narrow_matcher): ui.warn(err[0] % err[1:]) errors += 1