diff options
author | Andreas Jaeger <aj@suse.de> | 2000-04-28 16:44:25 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-04-28 16:44:25 +0000 |
commit | a7f775a55e79ee3b123fff604e63781c08e4598a (patch) | |
tree | 03418fc79f8c18cf0decbcfa7d7e43dc57324cbd /io/ftw.c | |
parent | d413445041e9d3f90c7d660ac0028767a0d0c76e (diff) | |
download | glibc-a7f775a55e79ee3b123fff604e63781c08e4598a.zip glibc-a7f775a55e79ee3b123fff604e63781c08e4598a.tar.gz glibc-a7f775a55e79ee3b123fff604e63781c08e4598a.tar.bz2 |
2000-04-28 Geoff Clare <gwc@unisoft.com>
* io/ftw.c: Set errno to ENOENT (instead of ENOTDIR) when the
path passed to ftw() or nftw() is an empty string.
Closes PR libc/1710.
Diffstat (limited to 'io/ftw.c')
-rw-r--r-- | io/ftw.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -472,7 +472,7 @@ ftw_startup (const char *dir, int is_nftw, void *func, int descriptors, /* First make sure the parameters are reasonable. */ if (dir[0] == '\0') { - __set_errno (ENOTDIR); + __set_errno (ENOENT); return -1; } |