diff options
author | Matt Kraai <kraai@debian.org> | 2000-09-20 23:10:21 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2000-09-20 23:10:21 +0000 |
commit | 7c22b771625cee60ca37be7c4cd27f2c360d0aba (patch) | |
tree | f68dd9314db9c30aefb9c3085262de5254223108 /coreutils | |
parent | cff3fe3ae9696584f0c4bdad6860e8d94d5e99f9 (diff) | |
download | busybox-w32-7c22b771625cee60ca37be7c4cd27f2c360d0aba.tar.gz busybox-w32-7c22b771625cee60ca37be7c4cd27f2c360d0aba.tar.bz2 busybox-w32-7c22b771625cee60ca37be7c4cd27f2c360d0aba.zip |
Only remove directories when removing recursively.
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/rm.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/coreutils/rm.c b/coreutils/rm.c index 275c05946..c93a94ce1 100644 --- a/coreutils/rm.c +++ b/coreutils/rm.c | |||
@@ -45,6 +45,11 @@ static int fileAction(const char *fileName, struct stat *statbuf, void* junk) | |||
45 | 45 | ||
46 | static int dirAction(const char *fileName, struct stat *statbuf, void* junk) | 46 | static int dirAction(const char *fileName, struct stat *statbuf, void* junk) |
47 | { | 47 | { |
48 | if (recursiveFlag == FALSE) { | ||
49 | errno = EISDIR; | ||
50 | perror(fileName); | ||
51 | return (FALSE); | ||
52 | } | ||
48 | if (rmdir(fileName) < 0) { | 53 | if (rmdir(fileName) < 0) { |
49 | perror(fileName); | 54 | perror(fileName); |
50 | return (FALSE); | 55 | return (FALSE); |