From: Matheus Afonso Martins Moreira <matheus@xxxxxxxxxxxxxxxxxx> Prepare to handle input by parsing the command line options and removing them from the arguments vector. Signed-off-by: Matheus Afonso Martins Moreira <matheus@xxxxxxxxxxxxxxxxxx> --- builtin/url-parse.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/builtin/url-parse.c b/builtin/url-parse.c index c6095b37ede..03030035b4f 100644 --- a/builtin/url-parse.c +++ b/builtin/url-parse.c @@ -101,5 +101,10 @@ static char *extract(enum url_component component, struct url_info *info) int cmd_url_parse(int argc, const char **argv, const char *prefix) { + argc = parse_options(argc, argv, prefix, + builtin_url_parse_options, + builtin_url_parse_usage, + 0); + return 0; } -- gitgitgadget