diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-07-16 12:34:54 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-07-16 12:34:54 +0200 |
commit | d05c5031ad4c528fe6bbfed289519edb9f13180a (patch) | |
tree | 6b71a2bab0120c86da640693474beb4931043b0c /src/tmpfiles/tmpfiles.c | |
parent | b2896c905bef7be7ed9a760d9d61aa6ad0f614a3 (diff) |
unit: introduce %s specifier for the user shell
Diffstat (limited to 'src/tmpfiles/tmpfiles.c')
-rw-r--r-- | src/tmpfiles/tmpfiles.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index 3b52b9889c..7a453dcc2a 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -1076,7 +1076,7 @@ static int parse_line(const char *fname, unsigned line, const char *buffer) { if (user && !streq(user, "-")) { const char *u = user; - r = get_user_creds(&u, &i->uid, NULL, NULL); + r = get_user_creds(&u, &i->uid, NULL, NULL, NULL); if (r < 0) { log_error("[%s:%u] Unknown user '%s'.", fname, line, user); goto finish; |