--- builtin-pack-objects.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) -- Dana L. How danahow@xxxxxxxxx +1 650 804 5991 cell
From 62532de2a8c19ca8d8bfb2e4bc02bff39bcc7ca8 Mon Sep 17 00:00:00 2001 From: Dana How <how@xxxxxxxxxxxxxxxxxxxxxxx> Date: Thu, 5 Apr 2007 14:06:05 -0700 Subject: [PATCH 09/13] drop objects larger than --blob-limit if specified --- builtin-pack-objects.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/builtin-pack-objects.c b/builtin-pack-objects.c index 37b0150..ccc2d15 100644 --- a/builtin-pack-objects.c +++ b/builtin-pack-objects.c @@ -1116,6 +1116,7 @@ static void check_object(struct object_entry *entry) } entry->type = sha1_object_info(entry->sha1, &entry->size); + nr_skipped += entry->no_write = blob_limit && (unsigned long)entry->size >= blob_limit; if (entry->type < 0) die("unable to get type of object %s", sha1_to_hex(entry->sha1)); -- 1.5.1.rc2.18.g9c88-dirty