Fix a stupid typo -- bug found by Larry Doolittle.
[oweals/busybox.git] / find.c
diff --git a/find.c b/find.c
index 329d1519357f0f89458fb4678dfd0fd92018558d..f60c45a4edd4ca9b3ed5a989dc8efc15436b0da9 100644 (file)
--- a/find.c
+++ b/find.c
@@ -3,7 +3,7 @@
  * Mini find implementation for busybox
  *
  *
- * Copyright (C) 1999,2000 by Lineo, inc.
+ * Copyright (C) 1999,2000,2001 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
  *
  */
 
-#include "internal.h"
-#include "regexp.h"
+#include "busybox.h"
 #include <stdio.h>
 #include <unistd.h>
 #include <dirent.h>
+#include <string.h>
+#include <stdlib.h>
 
 
 static char *pattern = NULL;
 static char *directory = ".";
 static int dereferenceFlag = FALSE;
 
-static const char find_usage[] = "find [PATH...] [EXPRESSION]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nSearch for files in a directory hierarchy.  The default PATH is\n"
-       "the current directory; default EXPRESSION is '-print'\n\n"
-       "\nEXPRESSION may consist of:\n"
-       "\t-follow\t\tDereference symbolic links.\n"
-       "\t-name PATTERN\tFile name (leading directories removed) matches PATTERN.\n"
-       "\t-print\t\tprint the full file name followed by a newline to stdout.\n"
-#endif
-       ;
-
-
 static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
 {
        if (pattern == NULL)
-               fprintf(stdout, "%s\n", fileName);
+               puts(fileName);
        else {
                char *tmp = strrchr(fileName, '/');
 
@@ -57,7 +46,7 @@ static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
                else
                        tmp++;
                if (check_wildcard_match(tmp, pattern) == TRUE)
-                       fprintf(stdout, "%s\n", fileName);
+                       puts(fileName);
        }
        return (TRUE);
 }
@@ -111,10 +100,10 @@ int find_main(int argc, char **argv)
                        break;
        }
 
-       if (recursiveAction(directory, TRUE, FALSE, FALSE,
+       if (recursive_action(directory, TRUE, FALSE, FALSE,
                                                fileAction, fileAction, NULL) == FALSE) {
-               exit(FALSE);
+               return EXIT_FAILURE;
        }
 
-       return(TRUE);
+       return EXIT_SUCCESS;
 }