Junio C Hamano <gitster@xxxxxxxxx> wrote: > And this is a fix-up for the mismerge. I didn't touch max-pack-size stuff. > > fast-import.c | 5 ++++- > 1 files changed, 4 insertions(+), 1 deletions(-) > > diff --git a/fast-import.c b/fast-import.c > index ca21082..a6730d0 100644 > --- a/fast-import.c > +++ b/fast-import.c > @@ -2800,7 +2800,10 @@ static int parse_one_option(const char *option) > if (!prefixcmp(option, "max-pack-size=")) { > option_max_pack_size(option + 14); > } else if (!prefixcmp(option, "big-file-threshold=")) { > - big_file_threshold = strtoumax(option + 19, NULL, 0) * 1024 * 1024; > + unsigned long v; > + if (!git_parse_ulong(option + 19, &v)) > + return 0; > + big_file_threshold = v; Yup, looks good to me. -- Shawn. -- 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