From: Zbigniew Jędrzejewski-Szmek Date: Thu, 3 Jan 2019 11:33:42 +0000 (+0100) Subject: core: update comment X-Git-Tag: v242-rc1~295^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=796ac4c12c47b05dc9ebff512729bb9802d9a93f;p=thirdparty%2Fsystemd.git core: update comment Initially, the check was that /usr is not a separate fs, and was later relaxed to allow /usr to be mounted in the initramfs. Documentation was updated in 9e93f6f09229ffdbc46ab, but this comment wasn't. Let's update it too. --- diff --git a/src/core/main.c b/src/core/main.c index 561f956f0a5..47a976ad0fe 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -1382,7 +1382,7 @@ static int bump_rlimit_memlock(struct rlimit *saved_rlimit) { static void test_usr(void) { - /* Check that /usr is not a separate fs */ + /* Check that /usr is either on the same file system as / or mounted already. */ if (dir_is_empty("/usr") <= 0) return;