Commit b153589b by nulltoken Committed by Vicent Marti

Make reinitializing a repository return GIT_ENOTIMPLEMENTED instead of GIT_SUCCESS

parent f3564e1e
......@@ -346,7 +346,7 @@ static int repo_init_reinit(repo_init *results)
{
/* TODO: reinit the repository */
results->has_been_reinit = 1;
return GIT_SUCCESS;
return GIT_ENOTIMPLEMENTED;
}
static int repo_init_createhead(git_repository *repo)
......
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