]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
core: service: fix error message
authorDaniel Mack <daniel@zonque.org>
Tue, 13 Oct 2015 16:04:13 +0000 (18:04 +0200)
committerDaniel 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

index bafb532e1ee9ff56e7fd23fcf6c11ff3dbd66a7e..586eddd99a860a58e5b8f9f5be83dbbe44cd3439 100644 (file)
@@ -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;
 }