I have this in mind... --- diff --git a/sha1_file.c b/sha1_file.c index f08b1d6..dae77fc 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -552,7 +552,8 @@ 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) + fprintf(stderr, "unable to open object pack directory: %s: %s\n", path, strerror(errno)); return; } path[len++] = '/'; - : 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