Commit d7940ac3 by Sven Strickroth

Fixed missing method

Signed-off-by: Sven Strickroth <email@cs-ware.de>
parent 407cf4e4
......@@ -483,6 +483,28 @@ int git_config_find_global(char *global_config_path, size_t length)
return 0;
}
int git_config_find_xdr(char *xdr_config_path, size_t length)
{
git_buf path = GIT_BUF_INIT;
int ret = git_config_find_xdr_r(&path);
if (ret < 0) {
git_buf_free(&path);
return ret;
}
if (path.size >= length) {
git_buf_free(&path);
giterr_set(GITERR_NOMEMORY,
"Path is to long to fit on the given buffer");
return -1;
}
git_buf_copy_cstr(xdr_config_path, length, &path);
git_buf_free(&path);
return 0;
}
int git_config_find_system_r(git_buf *path)
{
return git_futils_find_system_file(path, GIT_CONFIG_FILENAME_SYSTEM);
......
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