summaryrefslogtreecommitdiff
path: root/lib9p/include
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2024-10-02 21:44:27 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2024-10-02 21:50:40 -0600
commitad2027ae26e5d83eb42c9edaa90f7b278f9b0d3d (patch)
tree696c1d8bca3c8a7b29aa89ec0763b2e2e5c850eb /lib9p/include
parent06ab37743a3a657178a17d56252794073c00342b (diff)
lib9p: Exclude the MOUNT bit from masks, align masks
Diffstat (limited to 'lib9p/include')
-rw-r--r--lib9p/include/lib9p/_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib9p/include/lib9p/_types.h b/lib9p/include/lib9p/_types.h
index e22404c..576d481 100644
--- a/lib9p/include/lib9p/_types.h
+++ b/lib9p/include/lib9p/_types.h
@@ -71,8 +71,8 @@ typedef uint8_t lib9p_o_t;
#define LIB9P_O_TRUNC ((lib9p_o_t)(1<<4))
#define _LIB9P_O_UNUSED_3 ((lib9p_o_t)(1<<3))
#define _LIB9P_O_UNUSED_2 ((lib9p_o_t)(1<<2))
-#define _LIB9P_O_rwx_1 ((lib9p_o_t)(1<<1))
-#define _LIB9P_O_rwx_0 ((lib9p_o_t)(1<<0))
+#define LIB9P_O_rwx_1 ((lib9p_o_t)(1<<1))
+#define LIB9P_O_rwx_0 ((lib9p_o_t)(1<<0))
#define LIB9P_O_READ ((lib9p_o_t)(0))
#define LIB9P_O_WRITE ((lib9p_o_t)(1))
#define LIB9P_O_RDWR ((lib9p_o_t)(2))