aboutsummaryrefslogtreecommitdiffstats
path: root/include/slibc-human.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-11-16 00:31:19 +0100
committerMattias Andrée <maandree@operamail.com>2015-11-16 00:31:19 +0100
commit5f686fa4e2a6eb2d35036586d0a324a800b60014 (patch)
treebfab1034f54e0d78d808a85b4ebe1c3b74148978 /include/slibc-human.h
parentm doc (diff)
downloadslibc-5f686fa4e2a6eb2d35036586d0a324a800b60014.tar.gz
slibc-5f686fa4e2a6eb2d35036586d0a324a800b60014.tar.bz2
slibc-5f686fa4e2a6eb2d35036586d0a324a800b60014.tar.xz
m fix humanmode
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r--include/slibc-human.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/slibc-human.h b/include/slibc-human.h
index ab89036..dbb0a98 100644
--- a/include/slibc-human.h
+++ b/include/slibc-human.h
@@ -42,19 +42,19 @@ enum humanmode_mode
* Return in the format where 0750
* resolves to 'rwxr-x---'.
*
- * If used in combination with `MACHINEMODE_MASK`,
+ * If used in combination with `HUMANMODE_MASK`,
* 0750 resolves to 'u=rwx,g=r-x,o=---'.
*/
- MACHINEMODE_STAT = 1,
+ HUMANMODE_STAT = 1,
/**
* Return in the format where 0750
* resolves to 'u=rwx,g=rx,o='.
*
- * If used in combination with `MACHINEMODE_STAT`,
+ * If used in combination with `HUMANMODE_STAT`,
* 0750 resolves to 'u=rwx,g=r-x,o=---'.
*/
- MACHINEMODE_MASK = 2,
+ HUMANMODE_MASK = 2,
};