Wrap a table (bg set to black, width=80%) around the screenshot
[oweals/busybox.git] / find.c
diff --git a/find.c b/find.c
index 48faf2c30bcf3bd6601fd9d3a47e11691c615a8d..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
@@ -26,6 +26,8 @@
 #include <stdio.h>
 #include <unistd.h>
 #include <dirent.h>
+#include <string.h>
+#include <stdlib.h>
 
 
 static char *pattern = NULL;
@@ -35,7 +37,7 @@ static int dereferenceFlag = FALSE;
 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, '/');
 
@@ -44,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);
 }
@@ -98,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;
 }