diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-11-16 00:31:19 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-11-16 00:31:19 +0100 |
commit | 5f686fa4e2a6eb2d35036586d0a324a800b60014 (patch) | |
tree | bfab1034f54e0d78d808a85b4ebe1c3b74148978 /include | |
parent | m doc (diff) | |
download | slibc-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 'include')
-rw-r--r-- | include/slibc-human.h | 8 |
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, }; |