]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
2002-08-18 Roland McGrath <roland@frob.com>
authorRoland McGrath <roland@gnu.org>
Sun, 18 Aug 2002 20:36:55 +0000 (20:36 +0000)
committerRoland McGrath <roland@gnu.org>
Sun, 18 Aug 2002 20:36:55 +0000 (20:36 +0000)
* sysdeps/mach/hurd/mkdir.c (__mkdir): Use __directory_name_split
instead of __file_name_split.
* sysdeps/mach/hurd/unlink.c (__unlink): Likewise.

sysdeps/mach/hurd/mkdir.c
sysdeps/mach/hurd/unlink.c

index 884918c5609c5ba5bc4f34d3a7ae34c092d88506..b7e80748f7f8b610a835e19ce3ea5acb73a4e7f7 100644 (file)
@@ -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);
index 9dbd42c1f0cbc309875104802663759787e96f97..959c2f8d00aacc33f4b2a043a3f8ac0fc4644dfe 100644 (file)
@@ -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;