From: Daniel Mack Date: Tue, 13 Oct 2015 16:04:13 +0000 (+0200) Subject: core: service: fix error message X-Git-Tag: v228~121^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4b1728250d75de4851bdbf4d62d3cf85f9abda60;p=thirdparty%2Fsystemd.git core: service: fix error message The directive is called FileDescriptorStoreMax=, not FDStoreMax=. --- diff --git a/src/core/service.c b/src/core/service.c index bafb532e1ee..586eddd99a8 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; }