From: Erich Eckner <g...@eckner.net>

The old behaviour would always evaluate to true - this is certainly not
what that function should do.

Signed-off-by: Erich Eckner <g...@eckner.net>
---
 lib/archroot.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/archroot.sh b/lib/archroot.sh
index f2796034..2c03c827 100644
--- a/lib/archroot.sh
+++ b/lib/archroot.sh
@@ -42,7 +42,7 @@ is_subvolume() {
 # return : whether $path_a and $path_b are on the same filesystem
 ##
 is_same_fs() {
-       [[ "$(stat -c %d "$1")" == "$(stat -c %d "$1")" ]]
+       [[ "$(stat -c %d "$1")" == "$(stat -c %d "$2")" ]]
 }
 
 ##
-- 
2.21.0

Reply via email to