Commit 3e20154a by Carlos Martín Nieto

remote: simplify anonymous creation

We're down to simply having it be a call to create_internal() so let's
simply do that. The rest of the code is just a distraction.
parent a4b6452a
......@@ -313,14 +313,7 @@ on_error:
int git_remote_create_anonymous(git_remote **out, git_repository *repo, const char *url, const char *fetch)
{
int error;
git_remote *remote;
if ((error = create_internal(&remote, repo, NULL, url, fetch)) < 0)
return error;
*out = remote;
return 0;
return create_internal(out, repo, NULL, url, fetch);
}
int git_remote_dup(git_remote **dest, git_remote *source)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment