From 624776e0f3b23ff48bbf93e0b0df8366b0ac6766 Mon Sep 17 00:00:00 2001 From: Warren Toomey Date: Mon, 14 Mar 2016 21:22:29 +1000 Subject: [PATCH] Argh. A real dumb bug in mkfs7 that stopped us getting a shell. Fixed. --- tools/mkfs7 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/mkfs7 b/tools/mkfs7 index f6b12f0..1d76b3a 100755 --- a/tools/mkfs7 +++ b/tools/mkfs7 @@ -43,8 +43,8 @@ use constant I_DIRECTORY => 0000020; use constant I_FILE => 0000000; use constant I_OWNERREAD => 0000010; use constant I_OWNERWRITE => 0000004; -use constant I_WORLDREAD => 0000010; -use constant I_WORLDWRITE => 0000004; +use constant I_WORLDREAD => 0000002; +use constant I_WORLDWRITE => 0000001; use constant I_LINK => 0000001; # Never used in an i-node: just internal use