Commit cb020f0d by Sascha Cunz

Remove unneccessary string transformation

parent 0aeae705
......@@ -179,7 +179,7 @@ int git_remote_save(const git_remote *remote)
if (git_repository_config__weakptr(&config, remote->repo) < 0)
return -1;
if (git_buf_printf(&buf, "remote.%s.%s", remote->name, "url") < 0)
if (git_buf_printf(&buf, "remote.%s.url", remote->name) < 0)
return -1;
if (git_config_set_string(config, git_buf_cstr(&buf), remote->url) < 0) {
......
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