all repos — cgit @ 93d8ef8f1de4385c565049e1ccd7fdd25e6c14d7

a hyperfast web frontend for git written in c

parsing.c: make commit buffer const

This will be required in order to incorporate the changes to commit
buffer handling in Git 2.0.2.

Signed-off-by: John Keeping <john@keeping.me.uk>
John Keeping john@keeping.me.uk
Sun, 27 Jul 2014 11:56:18 +0100
commit

93d8ef8f1de4385c565049e1ccd7fdd25e6c14d7

parent

eeaffc33432d3cf91902cac3eab50c0598bdaa19

1 files changed, 4 insertions(+), 4 deletions(-)

jump to
M parsing.cparsing.c

@@ -69,9 +69,9 @@ buf[tail - head] = '\0';

return buf; } -static char *parse_user(char *t, char **name, char **email, unsigned long *date) +static const char *parse_user(const char *t, char **name, char **email, unsigned long *date) { - char *p = t; + const char *p = t; int mode = 1; while (p && *p) {

@@ -132,7 +132,7 @@

struct commitinfo *cgit_parse_commit(struct commit *commit) { struct commitinfo *ret; - char *p = commit->buffer, *t; + const char *p = commit->buffer, *t; ret = xmalloc(sizeof(*ret)); ret->commit = commit;

@@ -223,7 +223,7 @@ {

void *data; enum object_type type; unsigned long size; - char *p; + const char *p; struct taginfo *ret; data = read_sha1_file(tag->object.sha1, &type, &size);