Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
git-sh-setup: Fix scripts whose PWD is a symlink into a git work-dir
[gitweb.git]
/
sha1_name.c
diff --git
a/sha1_name.c
b/sha1_name.c
index 75a5a7e96f292bed344a7609fca2f3a45ba4314e..159c2ab84fa2cdde0e540024a1ca22e0bbb43af8 100644
(file)
--- a/
sha1_name.c
+++ b/
sha1_name.c
@@
-351,7
+351,10
@@
static int get_sha1_basic(const char *str, int len, unsigned char *sha1)
else
nth = -1;
}
- if (0 <= nth)
+ if (100000000 <= nth) {
+ at_time = nth;
+ nth = -1;
+ } else if (0 <= nth)
at_time = 0;
else {
char *tmp = xstrndup(str + at + 2, reflog_len);