diff options
Diffstat (limited to 'sysdeps/mach/hurd/chmod.c')
-rw-r--r-- | sysdeps/mach/hurd/chmod.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/sysdeps/mach/hurd/chmod.c b/sysdeps/mach/hurd/chmod.c index 7b79d24990..313483193d 100644 --- a/sysdeps/mach/hurd/chmod.c +++ b/sysdeps/mach/hurd/chmod.c @@ -24,15 +24,7 @@ int __chmod (const char *file, mode_t mode) { - error_t err; - file_t port = __file_name_lookup (file, 0, 0); - if (port == MACH_PORT_NULL) - return -1; - err = __file_chmod (port, mode); - __mach_port_deallocate (__mach_task_self (), port); - if (err) - return __hurd_fail (err); - return 0; + return __fchmodat (AT_FDCWD, file, mode, 0); } libc_hidden_def (__chmod) |