From 4b1728250d75de4851bdbf4d62d3cf85f9abda60 Mon Sep 17 00:00:00 2001 From: Daniel Mack Date: Tue, 13 Oct 2015 18:04:13 +0200 Subject: core: service: fix error message The directive is called FileDescriptorStoreMax=, not FDStoreMax=. --- src/core/service.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.3-54-g00ecf