From: Jonas Fonseca Date: Sat, 18 Feb 2006 01:10:53 +0000 (+0100) Subject: git-rev-parse: Fix --short= option parsing X-Git-Tag: v1.2.2~4 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=44de0da4f908b6600647673e1236b0ca504a9c15;p=git.git git-rev-parse: Fix --short= option parsing Signed-off-by: Jonas Fonseca --- diff --git a/rev-parse.c b/rev-parse.c index b82f294a..70a82714 100644 --- a/rev-parse.c +++ b/rev-parse.c @@ -225,12 +225,12 @@ int main(int argc, char **argv) continue; } if (!strcmp(arg, "--short") || - !strncmp(arg, "--short=", 9)) { + !strncmp(arg, "--short=", 8)) { filter &= ~(DO_FLAGS|DO_NOREV); verify = 1; abbrev = DEFAULT_ABBREV; - if (arg[8] == '=') - abbrev = strtoul(arg + 9, NULL, 10); + if (arg[7] == '=') + abbrev = strtoul(arg + 8, NULL, 10); if (abbrev < MINIMUM_ABBREV) abbrev = MINIMUM_ABBREV; else if (40 <= abbrev)