summaryrefslogtreecommitdiff
path: root/src/portable
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/portable
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/portable')
-rw-r--r--src/portable/portable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/portable/portable.c b/src/portable/portable.c
index 7b0ee97c8c..23102e51dd 100644
--- a/src/portable/portable.c
+++ b/src/portable/portable.c
@@ -1072,7 +1072,7 @@ static int install_profile_dropin(
if (flags & PORTABLE_PREFER_COPY) {
- r = copy_file_atomic(from, dropin, 0644, 0, 0, COPY_REFLINK);
+ r = copy_file_atomic(from, dropin, 0644, COPY_REFLINK);
if (r < 0)
return log_debug_errno(r, "Failed to copy %s %s %s: %m", from, special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), dropin);