summaryrefslogtreecommitdiff
path: root/src/home
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2021-11-12 18:50:44 +0100
committerLennart Poettering <lennart@poettering.net>2021-11-13 08:10:11 +0100
commitb085d2240658bed3eb313777fe7b766797fff71d (patch)
treebb1fc9b7face6f1eae01e2f498f28141419dcc1e /src/home
parentbb562024a57d2e183d85a2e62639f9fb63281969 (diff)
downloadsystemd-b085d2240658bed3eb313777fe7b766797fff71d.tar.gz
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')
-rw-r--r--src/home/homectl.c1
-rw-r--r--src/home/homed-home.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/home/homectl.c b/src/home/homectl.c
index 21c12816c4..a4f3116544 100644
--- a/src/home/homectl.c
+++ b/src/home/homectl.c
@@ -36,6 +36,7 @@
#include "rlimit-util.h"
#include "spawn-polkit-agent.h"
#include "terminal-util.h"
+#include "uid-alloc-range.h"
#include "user-record-pwquality.h"
#include "user-record-show.h"
#include "user-record-util.h"
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"