1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-05 15:21:37 +03:00

core: make return parameter of dynamic_user_lookup_name() optional

This commit is contained in:
Lennart Poettering 2019-08-07 12:48:45 +02:00
parent 1604937f83
commit 4bad7eedae

View File

@ -529,7 +529,6 @@ int dynamic_user_current(DynamicUser *d, uid_t *ret) {
int r; int r;
assert(d); assert(d);
assert(ret);
/* Get the currently assigned UID for the user, if there's any. This simply pops the data from the storage socket, and pushes it back in right-away. */ /* Get the currently assigned UID for the user, if there's any. This simply pops the data from the storage socket, and pushes it back in right-away. */
@ -545,7 +544,9 @@ int dynamic_user_current(DynamicUser *d, uid_t *ret) {
if (r < 0) if (r < 0)
return r; return r;
*ret = uid; if (ret)
*ret = uid;
return 0; return 0;
} }
@ -732,7 +733,6 @@ int dynamic_user_lookup_name(Manager *m, const char *name, uid_t *ret) {
assert(m); assert(m);
assert(name); assert(name);
assert(ret);
/* A friendly call for translating a dynamic user's name into its UID */ /* A friendly call for translating a dynamic user's name into its UID */