From ce54ccc2c04b0a6ec9105522e4b8b4cc278c5106 Mon Sep 17 00:00:00 2001 From: Dor Askayo Date: Sat, 1 Jan 2022 20:38:38 +0200 Subject: [PATCH] Fix definition of S_ISUID. * include/sys/stat.h (S_ISUID: Append missing zero. --- include/sys/stat.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/sys/stat.h b/include/sys/stat.h index adc75f21..0aefa286 100644 --- a/include/sys/stat.h +++ b/include/sys/stat.h @@ -1,6 +1,7 @@ /* -*-comment-start: "//";comment-end:""-*- * GNU Mes --- Maxwell Equations of Software * Copyright © 2017 Jan (janneke) Nieuwenhuizen + * Copyright © 2022 Dor Askayo * * This file is part of GNU Mes. * @@ -107,7 +108,7 @@ int stat (char const *file_name, struct stat *buf); #define S_IWUSR 00200 #define S_IRUSR 00400 -#define S_ISUID 0400 +#define S_ISUID 04000 #define S_ISGID 02000 #define S_IXGRP 00010 #define S_IXOTH 00001