diff options
author | Lennart Poettering <lennart@poettering.net> | 2021-10-26 17:16:13 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2021-10-28 08:17:46 +0200 |
commit | c00b2ddc6e5995421d75740d8d6ec0ae10d92ee9 (patch) | |
tree | ed9593e9b69d15319157bff17488041ed82eb053 /src/home/homework-directory.h | |
parent | homework: replace homegrown syncfs_path() reimplementation by syncfs_path() (diff) | |
download | systemd-c00b2ddc6e5995421d75740d8d6ec0ae10d92ee9.tar.xz systemd-c00b2ddc6e5995421d75740d8d6ec0ae10d92ee9.zip |
homework: always pass HomeSetup param first, PasswordCache second
Some of our operations did it one way, most the other. Let's unify on
the order that is more popular.
Diffstat (limited to 'src/home/homework-directory.h')
-rw-r--r-- | src/home/homework-directory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/home/homework-directory.h b/src/home/homework-directory.h index 92cc755546..ecbb2f143c 100644 --- a/src/home/homework-directory.h +++ b/src/home/homework-directory.h @@ -7,4 +7,4 @@ int home_setup_directory(UserRecord *h, HomeSetup *setup); int home_activate_directory(UserRecord *h, HomeSetup *setup, PasswordCache *cache, UserRecord **ret_home); int home_create_directory_or_subvolume(UserRecord *h, HomeSetup *setup, UserRecord **ret_home); -int home_resize_directory(UserRecord *h, HomeSetupFlags flags, PasswordCache *cache, HomeSetup *setup, UserRecord **ret_home); +int home_resize_directory(UserRecord *h, HomeSetupFlags flags, HomeSetup *setup, PasswordCache *cache, UserRecord **ret_home); |