Stuff
[oweals/busybox.git] / coreutils / rm.c
index dd8dfa4e6e0634250a2bae12e8b697b6a1b6a1f5..077e792f9615119708a3f9dbc726aa27a9258bb6 100644 (file)
@@ -1,7 +1,9 @@
 /*
  * Mini rm implementation for busybox
  *
- * Copyright (C) 1998 by Erik Andersen <andersee@debian.org>
+ *
+ * Copyright (C) 1999 by Lineo, inc.
+ * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -82,7 +84,7 @@ extern int rm_main(int argc, char **argv)
 
     while (argc-- > 0) {
        srcName = *(argv++);
-       if (recursiveAction( srcName, recursiveFlag, TRUE, TRUE, 
+       if (recursiveAction( srcName, recursiveFlag, FALSE, TRUE, 
                               fileAction, dirAction) == FALSE) {
            exit( FALSE);
        }