From: "Marc-André Lureau" <marcandre.lureau@gmail.com>
To: git@vger.kernel.org
Subject: [PATCH/RFC 2/6] tag: parse the date
Date: Sun, 22 Feb 2009 20:06:56 +0200 [thread overview]
Message-ID: <e29894ca0902221006k6da2c8adha858c7b61bdbc3ea@mail.gmail.com> (raw)
Signed-off-by: Marc-Andre Lureau <marcandre.lureau@gmail.com>
---
tag.c | 5 ++++-
tag.h | 1 +
2 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/tag.c b/tag.c
index 42e5b22..eecc636 100644
--- a/tag.c
+++ b/tag.c
@@ -40,7 +40,7 @@ int parse_tag_buffer(struct tag *item, void *data,
unsigned long size)
{
int typelen, taglen, siglen;
unsigned char sha1[20];
- const char *type_line, *tag_line, *sig_line, *msg_line;
+ const char *type_line, *tag_line, *sig_line, *msg_line, *date;
char type[20];
const char *start = data;
@@ -78,6 +78,9 @@ int parse_tag_buffer(struct tag *item, void *data,
unsigned long size)
item->tag = xmemdupz(tag_line + 4, taglen);
siglen = msg_line - sig_line - strlen("tagger \n");
item->signature = xmemdupz(sig_line + 7, siglen);
+ date = strchr(item->signature, '>');
+ if (date)
+ item->date = strtoul(++date, NULL, 10);
if (!strcmp(type, blob_type)) {
item->tagged = &lookup_blob(sha1)->object;
diff --git a/tag.h b/tag.h
index bc2cab3..e6edfcf 100644
--- a/tag.h
+++ b/tag.h
@@ -10,6 +10,7 @@ struct tag {
struct object *tagged;
char *tag;
char *signature;
+ unsigned long date;
};
extern struct tag *lookup_tag(const unsigned char *sha1);
--
1.6.2.rc1.28.g05ef4.dirty
reply other threads:[~2009-02-22 18:08 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=e29894ca0902221006k6da2c8adha858c7b61bdbc3ea@mail.gmail.com \
--to=marcandre.lureau@gmail.com \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).