diff options
author | Lukas Fleischer | 2014-01-10 12:44:35 +0100 |
---|---|---|
committer | Jason A. Donenfeld | 2014-01-10 17:01:29 +0100 |
commit | 36bdb2171f7154fcdf1a24d38c8ce3bd7e448cb1 (patch) | |
tree | 06a5bc8163bde09074e18ad5e66deb35ebb136c6 /parsing.c | |
parent | d523dacc3b1c93bb186cdd0ddb5e721162aa927e (diff) | |
download | cgit-36bdb2171f7154fcdf1a24d38c8ce3bd7e448cb1.tar.gz cgit-36bdb2171f7154fcdf1a24d38c8ce3bd7e448cb1.tar.bz2 cgit-36bdb2171f7154fcdf1a24d38c8ce3bd7e448cb1.zip |
Replace most uses of strncmp() with prefixcmp()
This is a preparation for replacing all prefix checks with either
strip_prefix() or starts_with() when Git 1.8.6 is released.
Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
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 { |