Alexander Potashev schrieb: > - if ((ent->d_name[0] == '.') && > - (ent->d_name[1] == 0 || > - ((ent->d_name[1] == '.') && (ent->d_name[2] == 0)))) > + if (is_pseudo_dir_name(ent->d_name)) Nit-pick: When I read the resulting code, then I will have to look up that is_pseudo_dir_name() indeed only checks for "." and "..". But if it were named is_dot_or_dotdot(), then I would have to do that. -- Hannes -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html