about summary refs log tree commit diff
path: root/sysdeps/mach/hurd/renameat.c
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2019-02-27 07:53:13 -0800
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2019-02-27 09:42:44 -0800
commit1b2184177553ce4ef8458034927ef50854be2af6 (patch)
treeb91ea628502ebbb23a2c9beae90917262cede379 /sysdeps/mach/hurd/renameat.c
parentf627dd4da804c00b5e89e5e2c488c2bad6205262 (diff)
downloadglibc-1b2184177553ce4ef8458034927ef50854be2af6.tar.gz
glibc-1b2184177553ce4ef8458034927ef50854be2af6.tar.xz
glibc-1b2184177553ce4ef8458034927ef50854be2af6.zip
hurd: Add renameat2 support for RENAME_NOREPLACE
	* include/stdio.h (__renameat2): New hidden prototype.
	* stdio-common/renameat2.c (__renameat2): Add hidden definition.
	* sysdeps/mach/hurd/renameat.c (__renameat): Move implementation to...
	* sysdeps/mach/hurd/renameat2.c (__renameat2): ... new function, and
	add support for RENAME_NOREPLACE.
	* sysdeps/unix/sysv/linux/renameat2.c (__renameat2): Add hidden definition.
Diffstat (limited to 'sysdeps/mach/hurd/renameat.c')
-rw-r--r--sysdeps/mach/hurd/renameat.c21
1 files changed, 1 insertions, 20 deletions
diff --git a/sysdeps/mach/hurd/renameat.c b/sysdeps/mach/hurd/renameat.c
index 9aa231091c..a05f550a57 100644
--- a/sysdeps/mach/hurd/renameat.c
+++ b/sysdeps/mach/hurd/renameat.c
@@ -24,26 +24,7 @@
 int
 __renameat (int oldfd, const char *old, int newfd, const char *new)
 {
-  error_t err;
-  file_t olddir, newdir;
-  const char *oldname, *newname;
-
-  olddir = __directory_name_split_at (oldfd, old, (char **) &oldname);
-  if (olddir == MACH_PORT_NULL)
-    return -1;
-  newdir = __directory_name_split_at (newfd, new, (char **) &newname);
-  if (newdir == MACH_PORT_NULL)
-    {
-       __mach_port_deallocate (__mach_task_self (), olddir);
-      return -1;
-    }
-
-  err = __dir_rename (olddir, oldname, newdir, newname, 0);
-  __mach_port_deallocate (__mach_task_self (), olddir);
-  __mach_port_deallocate (__mach_task_self (), newdir);
-  if (err)
-    return __hurd_fail (err);
-  return 0;
+  return __renameat2 (oldfd, old, newfd, new, 0);
 }
 libc_hidden_def (__renameat)
 weak_alias (__renameat, renameat)