diff options
author | Roland McGrath <roland@gnu.org> | 1999-11-13 23:52:38 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-11-13 23:52:38 +0000 |
commit | 0bd019279b29e72861ba57e6101afa5e6dafb3a5 (patch) | |
tree | 9c89dfd0f45958c30c82d3a5097cf5feaf96bd95 /sysdeps/mach/hurd/rmdir.c | |
parent | 28f08f3fd1c20c4352746839c242d3a7776041a6 (diff) | |
download | glibc-0bd019279b29e72861ba57e6101afa5e6dafb3a5.tar.gz |
* Versions.def (libc): Move GLIBC_2.2 dependency from GLIBC_2.1.1 to
GLIBC_2.1.3.
1999-11-13 Roland McGrath <roland@baalperazim.frob.com>
Diffstat (limited to 'sysdeps/mach/hurd/rmdir.c')
-rw-r--r-- | sysdeps/mach/hurd/rmdir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/mach/hurd/rmdir.c b/sysdeps/mach/hurd/rmdir.c index 920d698644..be9a254a30 100644 --- a/sysdeps/mach/hurd/rmdir.c +++ b/sysdeps/mach/hurd/rmdir.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,99 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 @@ -28,7 +28,7 @@ __rmdir (file_name) { 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_rmdir (parent, name); |