summaryrefslogtreecommitdiff
path: root/src/analyze
diff options
context:
space:
mode:
authorDaan De Meyer <daan.j.demeyer@gmail.com>2023-03-14 16:30:46 +0100
committerDaan De Meyer <daan.j.demeyer@gmail.com>2023-03-21 20:53:09 +0100
commit7c2f5495e27283c757a5eb544af7654c8f60e50d (patch)
treefec5aac5976b64120c3b27600089d0247328cc40 /src/analyze
parentf3e03bd04e21c00cd251bf69a346d0ae505b6494 (diff)
downloadsystemd-7c2f5495e27283c757a5eb544af7654c8f60e50d.tar.gz
copy: Move chattr arguments to full function signatures
These are almost never used, so let's move them to the _full() functions signatures.
Diffstat (limited to 'src/analyze')
-rw-r--r--src/analyze/analyze-security.c2
-rw-r--r--src/analyze/analyze-verify.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/analyze/analyze-security.c b/src/analyze/analyze-security.c
index 7662bf1827..56bc362776 100644
--- a/src/analyze/analyze-security.c
+++ b/src/analyze/analyze-security.c
@@ -2753,7 +2753,7 @@ static int offline_security_checks(
profile = profile_path;
}
- r = copy_file(profile, dropin, 0, 0644, 0, 0, 0);
+ r = copy_file(profile, dropin, 0, 0644, 0);
if (r < 0)
return log_error_errno(r, "Failed to copy: %m");
}
diff --git a/src/analyze/analyze-verify.c b/src/analyze/analyze-verify.c
index 98d48f6276..3b463f2ac7 100644
--- a/src/analyze/analyze-verify.c
+++ b/src/analyze/analyze-verify.c
@@ -40,7 +40,7 @@ static int process_aliases(char *argv[], char *tempdir, char ***ret) {
if (!dst)
return -ENOMEM;
- r = copy_file(src, dst, 0, 0644, 0, 0, COPY_REFLINK);
+ r = copy_file(src, dst, 0, 0644, COPY_REFLINK);
if (r < 0)
return r;