about summary refs log tree commit diff stats
path: root/parsing.c
diff options
context:
space:
mode:
authorJohn Keeping2014-07-27 11:56:18 +0100
committerJason A. Donenfeld2014-07-28 02:01:23 +0200
commit93d8ef8f1de4385c565049e1ccd7fdd25e6c14d7 (patch)
tree6d9d85ac881f6926b6c7e6a8fab088316ce1fd9b /parsing.c
parentBump version. (diff)
downloadcgit-93d8ef8f1de4385c565049e1ccd7fdd25e6c14d7.tar.gz
cgit-93d8ef8f1de4385c565049e1ccd7fdd25e6c14d7.zip
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>
Diffstat (limited to 'parsing.c')
-rw-r--r--parsing.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/parsing.c b/parsing.c index 073f46f..edb3416 100644 --- a/parsing.c +++ b/parsing.c
@@ -69,9 +69,9 @@ static char *substr(const char *head, const char *tail)
69 return buf; 69 return buf;
70} 70}
71 71
72static char *parse_user(char *t, char **name, char **email, unsigned long *date) 72static const char *parse_user(const char *t, char **name, char **email, unsigned long *date)
73{ 73{
74 char *p = t; 74 const char *p = t;
75 int mode = 1; 75 int mode = 1;
76 76
77 while (p && *p) { 77 while (p && *p) {
@@ -132,7 +132,7 @@ static const char *reencode(char **txt, const char *src_enc, const char *dst_enc
132struct commitinfo *cgit_parse_commit(struct commit *commit) 132struct commitinfo *cgit_parse_commit(struct commit *commit)
133{ 133{
134 struct commitinfo *ret; 134 struct commitinfo *ret;
135 char *p = commit->buffer, *t; 135 const char *p = commit->buffer, *t;
136 136
137 ret = xmalloc(sizeof(*ret)); 137 ret = xmalloc(sizeof(*ret));
138 ret->commit = commit; 138 ret->commit = commit;
@@ -223,7 +223,7 @@ struct taginfo *cgit_parse_tag(struct tag *tag)
223 void *data; 223 void *data;
224 enum object_type type; 224 enum object_type type;
225 unsigned long size; 225 unsigned long size;
226 char *p; 226 const char *p;
227 struct taginfo *ret; 227 struct taginfo *ret;
228 228
229 data = read_sha1_file(tag->object.sha1, &type, &size); 229 data = read_sha1_file(tag->object.sha1, &type, &size);