From 734c7e02aeb659e6c3dd11cd751436fc5b63ea10 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 8 Jan 2017 01:57:12 +0000 Subject: [PATCH] git fetching: Fix debugging output after function rename Signed-off-by: Ian Jackson --- dgit | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dgit b/dgit index 5f37c114..7eaa5ef6 100755 --- a/dgit +++ b/dgit @@ -2536,7 +2536,7 @@ sub git_lrfetch_sane { # git fetch to try to generate it. If we don't manage to generate # the target state, we try again. - printdebug "git_fetch_us specs @specs\n"; + printdebug "git_lrfetch_sane specs @specs\n"; my $specre = join '|', map { my $x = $_; @@ -2544,7 +2544,7 @@ sub git_lrfetch_sane { $x =~ s/\\\*$/.*/; "(?:refs/$x)"; } @specs; - printdebug "git_fetch_us specre=$specre\n"; + printdebug "git_lrfetch_sane specre=$specre\n"; my $wanted_rref = sub { local ($_) = @_; return m/^(?:$specre)$/o; @@ -2553,7 +2553,7 @@ sub git_lrfetch_sane { my $fetch_iteration = 0; FETCH_ITERATION: for (;;) { - printdebug "git_fetch_us iteration $fetch_iteration\n"; + printdebug "git_lrfetch_sane iteration $fetch_iteration\n"; if (++$fetch_iteration > 10) { fail "too many iterations trying to get sane fetch!"; } @@ -2585,7 +2585,7 @@ END "+refs/$_:".lrfetchrefs."/$_"; } @specs; - printdebug "git_fetch_us fspecs @fspecs\n"; + printdebug "git_lrfetch_sane fspecs @fspecs\n"; my @fcmd = (@git, qw(fetch -p -n -q), access_giturl(), @fspecs); runcmd_ordryrun_local @git, qw(fetch -p -n -q), access_giturl(), @@ -2641,7 +2641,7 @@ END } last; } - printdebug "git_fetch_us: git fetch --no-insane emulation complete\n", + printdebug "git_lrfetch_sane: git fetch --no-insane emulation complete\n", Dumper(\%lrfetchrefs_f); } -- 2.30.2