diff options
author | Mike Yuan <me@yhndnzj.com> | 2024-03-03 11:13:52 +0100 |
---|---|---|
committer | Mike Yuan <me@yhndnzj.com> | 2024-03-03 12:01:00 +0100 |
commit | 4f49512695f8214c55c206b3c2f583dc7b309e1b (patch) | |
tree | 70c9ea001721617aa281e79d3aa6a0770bccf5e6 /src/sysusers | |
parent | core/service: minor cleanup for service_add_fd_store (diff) | |
download | systemd-4f49512695f8214c55c206b3c2f583dc7b309e1b.tar.xz systemd-4f49512695f8214c55c206b3c2f583dc7b309e1b.zip |
extract-word: modernize extract_many_words
Diffstat (limited to 'src/sysusers')
-rw-r--r-- | src/sysusers/sysusers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sysusers/sysusers.c b/src/sysusers/sysusers.c index 89e957822a..b071623780 100644 --- a/src/sysusers/sysusers.c +++ b/src/sysusers/sysusers.c @@ -1701,7 +1701,7 @@ static int parse_line( /* Parse columns */ p = buffer; r = extract_many_words(&p, NULL, EXTRACT_UNQUOTE, - &action, &name, &id, &description, &home, &shell, NULL); + &action, &name, &id, &description, &home, &shell); if (r < 0) return log_syntax(NULL, LOG_ERR, fname, line, r, "Syntax error."); if (r < 2) |