diff mercurial/admin/verify.py @ 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 752c5a5b73c6
children 2a27b921cd91
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