X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=fast-import.c;h=3e4e655bb989076e4bb6311fa4fe41320c344194;hb=865207a6dd9f7cc0c0941798b6ab4115b14f97a7;hp=65d65bf8f91b7a584c7dc77f84a5dec263c3d11c;hpb=2c320e71bfae3d2972d41680a04b78cbd42cb941;p=git.git diff --git a/fast-import.c b/fast-import.c index 65d65bf8f..3e4e655bb 100644 --- a/fast-import.c +++ b/fast-import.c @@ -274,7 +274,6 @@ struct recent_command { /* Configured limits on output */ static unsigned long max_depth = 10; static off_t max_packsize; -static uintmax_t big_file_threshold = 512 * 1024 * 1024; static int force_update; static int pack_compression_level = Z_DEFAULT_COMPRESSION; static int pack_compression_seen; @@ -3206,10 +3205,6 @@ static int git_pack_config(const char *k, const char *v, void *cb) max_packsize = git_config_ulong(k, v); return 0; } - if (!strcmp(k, "core.bigfilethreshold")) { - long n = git_config_int(k, v); - big_file_threshold = 0 < n ? n : 0; - } return git_default_config(k, v, cb); }