X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=rev-parse.c;h=a5fb93c3ca993dc240f87a9ac5ee6447b10b7cad;hb=bbe0c9b8d82aa98aad2ae7e6554cc0b9e2836363;hp=b82f294a78994e512c4f30da5bb4ba3eca3f95b4;hpb=a2c641c4ab66b5bdcb62c36a5f748b9f929d61b8;p=git.git diff --git a/rev-parse.c b/rev-parse.c index b82f294a7..a5fb93c3c 100644 --- a/rev-parse.c +++ b/rev-parse.c @@ -48,6 +48,7 @@ static int is_rev_argument(const char *arg) "--show-breaks", "--sparse", "--topo-order", + "--date-order", "--unpacked", NULL }; @@ -225,12 +226,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)