Make dirtree_handle_callback() start with dirtree_ like the rest of the dirtree funct...
authorRob Landley <rob@landley.net>
Mon, 31 Dec 2012 20:38:13 +0000 (14:38 -0600)
committerRob Landley <rob@landley.net>
Mon, 31 Dec 2012 20:38:13 +0000 (14:38 -0600)
lib/dirtree.c
lib/lib.h
toys/posix/chgrp.c
toys/posix/du.c

index c9660fc..e119c5d 100644 (file)
@@ -22,7 +22,7 @@ int dirtree_notdotdot(struct dirtree *catch)
 
 // Create a dirtree node from a path, with stat and symlink info.
 // (This doesn't open directory filehandles yet so as not to exhaust the
-// filehandle space on large trees. handle_callback() does that instead.)
+// filehandle space on large trees, dirtree_handle_callback() does that.)
 
 struct dirtree *dirtree_add_node(struct dirtree *parent, char *name,
   int symfollow)
@@ -102,7 +102,7 @@ int dirtree_parentfd(struct dirtree *node)
 // hit, free structures after use, and return NULL.
 //
 
-struct dirtree *handle_callback(struct dirtree *new,
+struct dirtree *dirtree_handle_callback(struct dirtree *new,
           int (*callback)(struct dirtree *node))
 {
   int flags, dir = S_ISDIR(new->st.st_mode);
@@ -154,7 +154,7 @@ void dirtree_recurse(struct dirtree *node,
   while ((entry = readdir(dir))) {
     if (!(new = dirtree_add_node(node, entry->d_name, symfollow)))
       continue;
-    new = handle_callback(new, callback);
+    new = dirtree_handle_callback(new, callback);
     if (new == DIRTREE_ABORTVAL) break;
     if (new) {
       *ddt = new;
@@ -176,5 +176,5 @@ struct dirtree *dirtree_read(char *path, int (*callback)(struct dirtree *node))
 {
   struct dirtree *root = dirtree_add_node(0, path, 0);
 
-  return root ? handle_callback(root, callback) : DIRTREE_ABORTVAL;
+  return root ? dirtree_handle_callback(root, callback) : DIRTREE_ABORTVAL;
 }
index 17aaea2..d3d15b8 100644 (file)
--- a/lib/lib.h
+++ b/lib/lib.h
@@ -74,7 +74,7 @@ struct dirtree *dirtree_add_node(struct dirtree *p, char *name, int symfollow);
 char *dirtree_path(struct dirtree *node, int *plen);
 int dirtree_notdotdot(struct dirtree *catch);
 int dirtree_parentfd(struct dirtree *node);
-struct dirtree *handle_callback(struct dirtree *new,
+struct dirtree *dirtree_handle_callback(struct dirtree *new,
   int (*callback)(struct dirtree *node));
 void dirtree_recurse(struct dirtree *node,
   int (*callback)(struct dirtree *node), int symfollow);
index 802d8f8..6e1e16f 100644 (file)
@@ -104,7 +104,7 @@ void chgrp_main(void)
 
   for (s=toys.optargs+1; *s; s++) {
     struct dirtree *new = dirtree_add_node(0, *s, hl);
-    if (new) handle_callback(new, do_chgrp);
+    if (new) dirtree_handle_callback(new, do_chgrp);
     else toys.exitval = 1;
   }
 
index 6c09aec..5dc3ee5 100644 (file)
@@ -206,7 +206,7 @@ void du_main(void)
     struct dirtree *root = dirtree_add_node(0, path, symfollow);
     if(root) {
       TT.st_dev = root->st.st_dev;
-      handle_callback(root, do_du); //this will recurse thru the DIR children.
+      dirtree_handle_callback(root, do_du); // recurse thru the DIR children.
     }
     toys.optargs++;
   }