summaryrefslogtreecommitdiffstats
path: root/sha1_name.c
diff options
context:
space:
mode:
authorShawn Pearce <spearce@spearce.org>2006-05-18 00:34:48 +0200
committerJunio C Hamano <junkio@cox.net>2006-05-18 02:36:36 +0200
commit70e34b2dc88e28f09903b85932ea679992da62ff (patch)
treeca893ed0f5e887650962a9c9a5e5cc2b42674336 /sha1_name.c
parentSupport 'master@2 hours ago' syntax (diff)
downloadgit-70e34b2dc88e28f09903b85932ea679992da62ff.tar.xz
git-70e34b2dc88e28f09903b85932ea679992da62ff.zip
Fix ref log parsing so it works properly.
The log parser was only ever matching the last log record due to calling strtoul on "> 1136091609" rather than " 1136091609". Also once a match for '@' has been found after the name of the ref there is no point in looking for another '@' within the remaining text. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'sha1_name.c')
-rw-r--r--sha1_name.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sha1_name.c b/sha1_name.c
index 3ac3ab4f58..4376cb3928 100644
--- a/sha1_name.c
+++ b/sha1_name.c
@@ -267,6 +267,7 @@ static int get_sha1_basic(const char *str, int len, unsigned char *sha1)
at_time = approxidate(date_spec);
free(date_spec);
len = at_mark;
+ break;
}
}