From 796ac4c12c47b05dc9ebff512729bb9802d9a93f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Thu, 3 Jan 2019 12:33:42 +0100 Subject: [PATCH] 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. --- src/core/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.3