X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Fcrawl_folders.c;h=59ec95209b0ae90f3bd790b9bb49ca2847dadae2;hb=3113d18bf20013be27c9aabc8aafcab9a6a8643e;hp=0693a2162b376944b20f04daaece627e55e8308c;hpb=714b5c530ece27ea2835a313013f5b770163403c;p=mmh diff --git a/sbr/crawl_folders.c b/sbr/crawl_folders.c index 0693a21..59ec952 100644 --- a/sbr/crawl_folders.c +++ b/sbr/crawl_folders.c @@ -12,8 +12,8 @@ struct crawl_context { int max; /* - ** how many folders we currently can hold in the array - ** `folders', increased by CRAWL_NUMFOLDERS at a time + ** number of folders we can hold in the folders array; + ** increased by CRAWL_NUMFOLDERS at a time */ int total; /* how many `folders' actually has */ char **folders; /* the array of folders */ @@ -84,7 +84,8 @@ add_children(char *name, struct crawl_context *crawl) continue; } #endif - if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, "..")) { + if (strcmp(dp->d_name, ".")==0 || + strcmp(dp->d_name, "..")==0) { continue; } child = concat(prefix, dp->d_name, (void *)NULL);