diff options
author | Lennart Poettering <lennart@poettering.net> | 2021-11-12 18:50:44 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2021-11-13 08:10:11 +0100 |
commit | b085d2240658bed3eb313777fe7b766797fff71d (patch) | |
tree | bb1fc9b7face6f1eae01e2f498f28141419dcc1e /src/home/homed-home.c | |
parent | homework: sync dir after moving file in, not before (diff) | |
download | systemd-b085d2240658bed3eb313777fe7b766797fff71d.tar.xz systemd-b085d2240658bed3eb313777fe7b766797fff71d.zip |
shared: split out UID allocation range stuff from user-record.h
user-record.[ch] are about the UserRecord JSON stuff, and the UID
allocation range stuff (i.e. login.defs handling) is a very different
thing, and complex enough on its own, let's give it its own c/h files.
No code changes, just some splitting out of code.
Diffstat (limited to 'src/home/homed-home.c')
-rw-r--r-- | src/home/homed-home.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/home/homed-home.c b/src/home/homed-home.c index 2b4e5dde8f..a31e27d051 100644 --- a/src/home/homed-home.c +++ b/src/home/homed-home.c @@ -34,6 +34,7 @@ #include "stat-util.h" #include "string-table.h" #include "strv.h" +#include "uid-alloc-range.h" #include "user-record-pwquality.h" #include "user-record-sign.h" #include "user-record-util.h" |