aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/mach
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-08-18 20:37:12 +0000
committerRoland McGrath <roland@gnu.org>2002-08-18 20:37:12 +0000
commitac04d0ddf6a2bf8e8914ca9a22f3080b8ea5bd49 (patch)
treebf7a4f712a572ee9545ab78617d173bf5900a5a5 /sysdeps/mach
parentb127fa25375feaa9ed71e34bb44851c82feb0b4a (diff)
downloadglibc-ac04d0ddf6a2bf8e8914ca9a22f3080b8ea5bd49.tar
glibc-ac04d0ddf6a2bf8e8914ca9a22f3080b8ea5bd49.tar.gz
glibc-ac04d0ddf6a2bf8e8914ca9a22f3080b8ea5bd49.tar.bz2
glibc-ac04d0ddf6a2bf8e8914ca9a22f3080b8ea5bd49.zip
* sysdeps/mach/hurd/mkdir.c (__mkdir): Use __directory_name_split
instead of __file_name_split. * sysdeps/mach/hurd/unlink.c (__unlink): Likewise.
Diffstat (limited to 'sysdeps/mach')
-rw-r--r--sysdeps/mach/hurd/mkdir.c4
-rw-r--r--sysdeps/mach/hurd/unlink.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/mach/hurd/mkdir.c b/sysdeps/mach/hurd/mkdir.c
index 884918c560..b7e80748f7 100644
--- a/sysdeps/mach/hurd/mkdir.c
+++ b/sysdeps/mach/hurd/mkdir.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 93, 94, 95, 96, 97 Free Software Foundation, Inc.
+/* Copyright (C) 1991,93,94,95,96,97,2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -29,7 +29,7 @@ __mkdir (file_name, mode)
{
error_t err;
const char *name;
- file_t parent = __file_name_split (file_name, (char **) &name);
+ file_t parent = __directory_name_split (file_name, (char **) &name);
if (parent == MACH_PORT_NULL)
return -1;
err = __dir_mkdir (parent, name, mode & ~_hurd_umask);
diff --git a/sysdeps/mach/hurd/unlink.c b/sysdeps/mach/hurd/unlink.c
index 9dbd42c1f0..959c2f8d00 100644
--- a/sysdeps/mach/hurd/unlink.c
+++ b/sysdeps/mach/hurd/unlink.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 92, 93, 94, 95, 97 Free Software Foundation, Inc.
+/* Copyright (C) 1991,92,93,94,95,97,2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -31,7 +31,7 @@ __unlink (name)
file_t dir;
const char *file;
- dir = __file_name_split (name, (char **) &file);
+ dir = __directory_name_split (name, (char **) &file);
if (dir == MACH_PORT_NULL)
return -1;