summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAxel Beckert <abe@deuxchevaux.org>2022-11-21 00:56:15 +0100
committerAxel Beckert <abe@deuxchevaux.org>2022-11-21 00:56:15 +0100
commitb13e78ec56a27821dc3ec5fd62cbb66dfff4dfab (patch)
treea71e2b9cd3f02289d60124b8351444121167de13
parentc972be93ac93ea69e3810b80c45411063413294c (diff)
Fix missed 3 to 4 arguments conversion in _install_file_to_path call
Closes: #1024520
-rw-r--r--lib/Debian/Debhelper/Dh_Lib.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Debian/Debhelper/Dh_Lib.pm b/lib/Debian/Debhelper/Dh_Lib.pm
index d4c293d7..de53e22c 100644
--- a/lib/Debian/Debhelper/Dh_Lib.pm
+++ b/lib/Debian/Debhelper/Dh_Lib.pm
@@ -2743,7 +2743,7 @@ sub install_dh_config_file {
# Set the mtime (and atime) to ensure reproducibility.
utime($sstat[9], $sstat[9], $target);
} else {
- _install_file_to_path($mode, $source, $target);
+ _install_file_to_path(1, $mode, $source, $target);
}
return 1;
}