X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=notmuch-new.c;h=13212639cc8ec669df4ea3d47f6c0d4d9a3fd834;hp=cc680b412a45e023e1b1b6cec0b92d37cf8c774c;hb=4f4d9a0a7b5d3d3967ba9abfa006910634d2d09a;hpb=c970de6dc5378b05feb0b3da40f1fc3408f3d337 diff --git a/notmuch-new.c b/notmuch-new.c index cc680b41..13212639 100644 --- a/notmuch-new.c +++ b/notmuch-new.c @@ -738,18 +738,20 @@ count_files (const char *path, int *count, add_files_state_t *state) entry = fs_entries[i]; /* Ignore special directories to avoid infinite recursion. - * Also ignore the .notmuch directory and files/directories - * the user has configured to be ignored. + * Also ignore the .notmuch directory. */ if (strcmp (entry->d_name, ".") == 0 || strcmp (entry->d_name, "..") == 0 || - strcmp (entry->d_name, ".notmuch") == 0 || - _entry_in_ignore_list (entry->d_name, state)) - { - if (state->debug && _entry_in_ignore_list (entry->d_name, state)) + strcmp (entry->d_name, ".notmuch") == 0) + continue; + + /* Ignore any files/directories the user has configured to be + * ignored + */ + if (_entry_in_ignore_list (entry->d_name, state)) { + if (state->debug) printf ("(D) count_files: explicitly ignoring %s/%s\n", - path, - entry->d_name); + path, entry->d_name); continue; }