refspec: add back a refspec_item_init() function
Re-add the non-fatal version of refspec_item_init_or_die() renamed away in an earlier change to get a more minimal diff. This should be used by callers that have their own error handling. This new function could be marked "static" since nothing outside of refspec.c uses it, but expecting future use of it, let's make it available to other users. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
dc06422183
commit
c495fd3d1b
10
refspec.c
10
refspec.c
@ -122,12 +122,16 @@ static int parse_refspec(struct refspec_item *item, const char *refspec, int fet
|
||||
return 1;
|
||||
}
|
||||
|
||||
int refspec_item_init(struct refspec_item *item, const char *refspec, int fetch)
|
||||
{
|
||||
memset(item, 0, sizeof(*item));
|
||||
return parse_refspec(item, refspec, fetch);
|
||||
}
|
||||
|
||||
void refspec_item_init_or_die(struct refspec_item *item, const char *refspec,
|
||||
int fetch)
|
||||
{
|
||||
memset(item, 0, sizeof(*item));
|
||||
|
||||
if (!parse_refspec(item, refspec, fetch))
|
||||
if (!refspec_item_init(item, refspec, fetch))
|
||||
die("Invalid refspec '%s'", refspec);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user