]> git.ipfire.org Git - thirdparty/systemd.git/commit - src/home/homectl.c
shared: split out UID allocation range stuff from user-record.h
authorLennart Poettering <lennart@poettering.net>
Fri, 12 Nov 2021 17:50:44 +0000 (18:50 +0100)
committerLennart Poettering <lennart@poettering.net>
Sat, 13 Nov 2021 07:10:11 +0000 (08:10 +0100)
commitb085d2240658bed3eb313777fe7b766797fff71d
treebb1fc9b7face6f1eae01e2f498f28141419dcc1e
parentbb562024a57d2e183d85a2e62639f9fb63281969
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.
16 files changed:
src/core/dynamic-user.c
src/coredump/coredump.c
src/home/homectl.c
src/home/homed-home.c
src/journal/journald-server.c
src/login/logind-user.c
src/shared/condition.c
src/shared/group-record.c
src/shared/meson.build
src/shared/uid-alloc-range.c [new file with mode: 0644]
src/shared/uid-alloc-range.h [new file with mode: 0644]
src/shared/user-record.c
src/shared/user-record.h
src/sysusers/sysusers.c
src/test/test-condition.c
src/test/test-user-record.c