Fix definition of S_ISUID.
* include/sys/stat.h (S_ISUID: Append missing zero.
This commit is contained in:
parent
f785f8d560
commit
ce54ccc2c0
|
@ -1,6 +1,7 @@
|
||||||
/* -*-comment-start: "//";comment-end:""-*-
|
/* -*-comment-start: "//";comment-end:""-*-
|
||||||
* GNU Mes --- Maxwell Equations of Software
|
* GNU Mes --- Maxwell Equations of Software
|
||||||
* Copyright © 2017 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
* Copyright © 2017 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||||
|
* Copyright © 2022 Dor Askayo <dor.askayo@gmail.com>
|
||||||
*
|
*
|
||||||
* This file is part of GNU Mes.
|
* 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_IWUSR 00200
|
||||||
#define S_IRUSR 00400
|
#define S_IRUSR 00400
|
||||||
|
|
||||||
#define S_ISUID 0400
|
#define S_ISUID 04000
|
||||||
#define S_ISGID 02000
|
#define S_ISGID 02000
|
||||||
#define S_IXGRP 00010
|
#define S_IXGRP 00010
|
||||||
#define S_IXOTH 00001
|
#define S_IXOTH 00001
|
||||||
|
|
Loading…
Reference in a new issue