From a7f775a55e79ee3b123fff604e63781c08e4598a Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Fri, 28 Apr 2000 16:44:25 +0000 Subject: 2000-04-28 Geoff Clare * 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. --- io/ftw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'io/ftw.c') diff --git a/io/ftw.c b/io/ftw.c index 3428fcf345..e832fbbc99 100644 --- a/io/ftw.c +++ b/io/ftw.c @@ -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; } -- cgit 1.4.1