diff options
author | Shawn Pearce <spearce@spearce.org> | 2006-05-18 00:34:48 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-18 02:36:36 +0200 |
commit | 70e34b2dc88e28f09903b85932ea679992da62ff (patch) | |
tree | ca893ed0f5e887650962a9c9a5e5cc2b42674336 /refs.c | |
parent | Support 'master@2 hours ago' syntax (diff) | |
download | git-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 'refs.c')
-rw-r--r-- | refs.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -459,7 +459,7 @@ int read_ref_at(const char *ref, unsigned long at_time, unsigned char *sha1) c++; if (c == logend || *c == '\n') die("Log %s is corrupt.", logfile); - date = strtoul(c, NULL, 10); + date = strtoul(c + 1, NULL, 10); if (date <= at_time) { if (get_sha1_hex(rec + 41, sha1)) die("Log %s is corrupt.", logfile); |