diff options
Diffstat (limited to 'parsing.c')
-rw-r--r-- | parsing.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -142,25 +142,25 @@ struct commitinfo *cgit_parse_commit(struct commit *commit) | |||
142 | if (p == NULL) | 142 | if (p == NULL) |
143 | return ret; | 143 | return ret; |
144 | 144 | ||
145 | if (strncmp(p, "tree ", 5)) | 145 | if (prefixcmp(p, "tree ")) |
146 | die("Bad commit: %s", sha1_to_hex(commit->object.sha1)); | 146 | die("Bad commit: %s", sha1_to_hex(commit->object.sha1)); |
147 | else | 147 | else |
148 | p += 46; // "tree " + hex[40] + "\n" | 148 | p += 46; // "tree " + hex[40] + "\n" |
149 | 149 | ||
150 | while (!strncmp(p, "parent ", 7)) | 150 | while (!prefixcmp(p, "parent ")) |
151 | p += 48; // "parent " + hex[40] + "\n" | 151 | p += 48; // "parent " + hex[40] + "\n" |
152 | 152 | ||
153 | if (p && !strncmp(p, "author ", 7)) { | 153 | if (p && !prefixcmp(p, "author ")) { |
154 | p = parse_user(p + 7, &ret->author, &ret->author_email, | 154 | p = parse_user(p + 7, &ret->author, &ret->author_email, |
155 | &ret->author_date); | 155 | &ret->author_date); |
156 | } | 156 | } |
157 | 157 | ||
158 | if (p && !strncmp(p, "committer ", 9)) { | 158 | if (p && !prefixcmp(p, "committer ")) { |
159 | p = parse_user(p + 9, &ret->committer, &ret->committer_email, | 159 | p = parse_user(p + 9, &ret->committer, &ret->committer_email, |
160 | &ret->committer_date); | 160 | &ret->committer_date); |
161 | } | 161 | } |
162 | 162 | ||
163 | if (p && !strncmp(p, "encoding ", 9)) { | 163 | if (p && !prefixcmp(p, "encoding ")) { |
164 | p += 9; | 164 | p += 9; |
165 | t = strchr(p, '\n'); | 165 | t = strchr(p, '\n'); |
166 | if (t) { | 166 | if (t) { |
@@ -239,7 +239,7 @@ struct taginfo *cgit_parse_tag(struct tag *tag) | |||
239 | if (*p == '\n') | 239 | if (*p == '\n') |
240 | break; | 240 | break; |
241 | 241 | ||
242 | if (!strncmp(p, "tagger ", 7)) { | 242 | if (!prefixcmp(p, "tagger ")) { |
243 | p = parse_user(p + 7, &ret->tagger, &ret->tagger_email, | 243 | p = parse_user(p + 7, &ret->tagger, &ret->tagger_email, |
244 | &ret->tagger_date); | 244 | &ret->tagger_date); |
245 | } else { | 245 | } else { |