From c1e5bcba7f5ae7d001f5f884a709d02b69c42203 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Mon, 28 Mar 2016 16:25:42 +0200 Subject: [PATCH] Fix S_IROTH having the wrong value. --- kernel/include/sortix/stat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/include/sortix/stat.h b/kernel/include/sortix/stat.h index 5e00bf7f..f290bf03 100644 --- a/kernel/include/sortix/stat.h +++ b/kernel/include/sortix/stat.h @@ -54,7 +54,7 @@ struct stat #define S_IXOTH 01 #define S_IWOTH 02 -#define S_IROTH 03 +#define S_IROTH 04 #define S_IRWXO 07 #define S_IXGRP 010 #define S_IWGRP 020