projects
/
systemd
/
.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d0744e5
)
core: service: fix error message
author
Daniel Mack
<daniel@zonque.org>
Tue, 13 Oct 2015 16:04:13 +0000
(18:04 +0200)
committer
Daniel Mack
<daniel@zonque.org>
Mon, 2 Nov 2015 09:13:29 +0000
(10:13 +0100)
The directive is called FileDescriptorStoreMax=, not FDStoreMax=.
src/core/service.c
patch
|
blob
|
history
diff --git
a/src/core/service.c
b/src/core/service.c
index bafb532e1ee9ff56e7fd23fcf6c11ff3dbd66a7e..586eddd99a860a58e5b8f9f5be83dbbe44cd3439 100644
(file)
--- 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 F
D
StoreMax=%u allows, closing remaining.", s->n_fd_store_max);
+ log_unit_warning(UNIT(s), "Tried to store more fds than F
ileDescriptor
StoreMax=%u allows, closing remaining.", s->n_fd_store_max);
return 0;
}