diff options
author | Daniel Mack <daniel@zonque.org> | 2015-10-13 18:04:13 +0200 |
---|---|---|
committer | Daniel Mack <daniel@zonque.org> | 2015-11-02 10:13:29 +0100 |
commit | 4b1728250d75de4851bdbf4d62d3cf85f9abda60 (patch) | |
tree | b5658c2d7711356620bc8cfc43bfb4a8bc2eca2f /src/core | |
parent | d0744e54eb83a9f4e4f54a59de3905699a667be0 (diff) |
core: service: fix error message
The directive is called FileDescriptorStoreMax=, not FDStoreMax=.
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/service.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/service.c b/src/core/service.c index bafb532e1e..586eddd99a 100644 --- a/src/core/service.c +++ b/src/core/service.c @@ -420,7 +420,7 @@ static int service_add_fd_store_set(Service *s, FDSet *fds, const char *name) { } if (fdset_size(fds) > 0) - log_unit_warning(UNIT(s), "Tried to store more fds than FDStoreMax=%u allows, closing remaining.", s->n_fd_store_max); + log_unit_warning(UNIT(s), "Tried to store more fds than FileDescriptorStoreMax=%u allows, closing remaining.", s->n_fd_store_max); return 0; } |