@@ -875,7 +875,7 @@ int fsck_tag_standalone(const struct object_id *oid, const char *buffer,
ret = report(options, oid, OBJ_TAG, FSCK_MSG_MISSING_TYPE, "invalid format - unexpected end after 'type' line");
goto done;
}
- *tagged_type = type_from_string_gently(buffer, eol - buffer, 1);
+ *tagged_type = type_from_string_gently(buffer, eol - buffer);
if (*tagged_type < 0)
ret = report(options, oid, OBJ_TAG, FSCK_MSG_BAD_TYPE, "invalid 'type' value");
if (ret)
@@ -1314,7 +1314,7 @@ static int parse_loose_header_extended(const char *hdr, struct object_info *oi,
type_len++;
}
- type = type_from_string_gently(type_buf, type_len, 1);
+ type = type_from_string_gently(type_buf, type_len);
if (oi->type_name)
strbuf_add(oi->type_name, type_buf, type_len);
/*
@@ -35,7 +35,7 @@ const char *type_name(unsigned int type)
return object_type_strings[type];
}
-int type_from_string_gently(const char *str, ssize_t len, int gentle)
+int type_from_string_gently(const char *str, ssize_t len)
{
int i;
@@ -43,17 +43,15 @@ int type_from_string_gently(const char *str, ssize_t len, int gentle)
if (!strncmp(str, object_type_strings[i], len) &&
object_type_strings[i][len] == '\0')
return i;
-
- if (gentle)
- return -1;
-
- die(_("invalid object type \"%s\""), str);
+ return -1;
}
int type_from_string(const char *str)
{
size_t len = strlen(str);
- int ret = type_from_string_gently(str, len, 0);
+ int ret = type_from_string_gently(str, len);
+ if (ret < 0)
+ die(_("invalid object type \"%s\""), str);
return ret;
}
@@ -93,7 +93,7 @@ struct object {
};
const char *type_name(unsigned int type);
-int type_from_string_gently(const char *str, ssize_t, int gentle);
+int type_from_string_gently(const char *str, ssize_t len);
int type_from_string(const char *str);
/*
Get rid of the "gently" argument to type_from_string_gently() to make it consistent with most other *_gently() functions. It's already a "gentle" function, it shouldn't need a boolean argument telling it to be gentle. The reason it had a "gentle" parameter was because until the preceding commit "type_from_string()" was a macro resolving to "type_from_string_gently()", it's now a function. This refactoring of adding a third parameter was done in fe8e3b71805 (Refactor type_from_string() to allow continuing after detecting an error, 2014-09-10) in preparation for its use in fsck.c. Simplifying this means we can move the die() into the simpler type_from_string() function. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> --- fsck.c | 2 +- object-file.c | 2 +- object.c | 12 +++++------- object.h | 2 +- 4 files changed, 8 insertions(+), 10 deletions(-)