Junio C Hamano <junkio@xxxxxxx> wrote Wed, Feb 22, 2006: > @@ -552,7 +563,9 @@ static void prepare_packed_git_one(char > len = strlen(path); > dir = opendir(path); > if (!dir) { > - fprintf(stderr, "unable to open object pack directory: %s: %s\n", path, strerror(errno)); > + if (errno != ENOENT) > + error("unable to open object pack directory: %s: %s\n", > + path, strerror(errno)); No need for the ending \n. -- Jonas Fonseca - : 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