Skip to content
Snippets Groups Projects
Commit ae24e221 authored by bors's avatar bors
Browse files

Auto merge of #503 - TethysSvensson:fix-mode, r=gnzlbg

Set the type for S_ISUID, S_ISGID and S_ISVTX correctly
parents c6306c13 457b0f99
No related branches found
No related tags found
No related merge requests found
......@@ -229,9 +229,9 @@ pub const GRPQUOTA: ::c_int = 1;
pub const SIGIOT: ::c_int = 6;
pub const S_ISUID: ::c_int = 0x800;
pub const S_ISGID: ::c_int = 0x400;
pub const S_ISVTX: ::c_int = 0x200;
pub const S_ISUID: ::mode_t = 0x800;
pub const S_ISGID: ::mode_t = 0x400;
pub const S_ISVTX: ::mode_t = 0x200;
pub const IF_NAMESIZE: ::size_t = 16;
pub const IFNAMSIZ: ::size_t = IF_NAMESIZE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment