diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/shutdown.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/shutdown.c b/src/shutdown.c index 46b5aea1c8..d157e0fbfe 100644 --- a/src/shutdown.c +++ b/src/shutdown.c @@ -81,7 +81,9 @@ static bool ignore_proc(pid_t pid) { return true; /* Processes with argv[0][0] = '@' we ignore from the killing - * spree. */ + * spree. + * + * http://www.freedesktop.org/wiki/Software/systemd/RootStorageDaemons */ if (count == 1 && c == '@') return true; |