]> diplodocus.org Git - nmh/blobdiff - sbr/crawl_folders.c
Escape literal leading full stop in man/new.man.
[nmh] / sbr / crawl_folders.c
index 67de2a507feeb2b8fdef1df11d5f532603ffa6cf..ac264f1294fc1332c4f436b7eb3612bb76d8de2a 100644 (file)
@@ -15,7 +15,6 @@ struct crawl_context {
     int max;                   /* how many folders we currently can hold in
                                 * the array `folders', increased by
                                 * CRAWL_NUMFOLDERS at a time */
-    int total;                 /* how many `folders' actually has */
     char **folders;            /* the array of folders */
     int start;
     int foldp;
@@ -29,7 +28,7 @@ struct crawl_context {
 static void
 add_folder (char *fold, struct crawl_context *crawl)
 {
-    register int i, j;
+    int i, j;
 
     /* if necessary, reallocate the space for folder names */
     if (crawl->foldp >= crawl->max) {
@@ -47,7 +46,6 @@ add_folder (char *fold, struct crawl_context *crawl)
            return;
        }
 
-    crawl->total++;
     crawl->folders[crawl->foldp++] = fold;
 }
 
@@ -138,7 +136,7 @@ crawl_folders (char *dir, crawl_callback_t *callback, void *baton)
     struct crawl_context *crawl;
     NEW(crawl);
     crawl->max = CRAWL_NUMFOLDERS;
-    crawl->total = crawl->start = crawl->foldp = 0;
+    crawl->start = crawl->foldp = 0;
     crawl->folders = mh_xmalloc (crawl->max * sizeof(*crawl->folders));
 
     crawl_folders_body (crawl, dir, callback, baton);