Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
git-rev-parse: Fix --short= option parsing
author
Jonas Fonseca
<fonseca@diku.dk>
Sat, 18 Feb 2006 01:10:53 +0000
(
02:10
+0100)
committer
Junio C Hamano
<junkio@cox.net>
Sat, 18 Feb 2006 01:33:11 +0000
(17:33 -0800)
Signed-off-by: Jonas Fonseca <fonseca@diku.dk>
rev-parse.c
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
b5b1699
)
diff --git
a/rev-parse.c
b/rev-parse.c
index b82f294a78994e512c4f30da5bb4ba3eca3f95b4..70a82714ca061db579838662189049d94453c9e3 100644
(file)
--- 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)