summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/cache.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/cache.c b/src/cache.c
index 0116fbf5..7c1d2991 100644
--- a/src/cache.c
+++ b/src/cache.c
@@ -585,7 +585,6 @@ static char *Cache_parse_field(const char *header, const char *fieldname)
}
i += j;
- while (header[i] == ' ') i++;
if (header[i] == ':') {
/* Field found! */
while (header[++i] == ' ' || header[i] == '\t');
@@ -622,7 +621,6 @@ static Dlist *Cache_parse_multiple_fields(const char *header,
}
i += j;
- for ( ; header[i] == ' '; i++);
if (header[i] == ':') {
/* Field found! */
while (header[++i] == ' ' || header[i] == '\t');