From d36451c9d4ba071de07106371553bf93f2717fc4 Mon Sep 17 00:00:00 2001 From: nulltoken Date: Sat, 17 Nov 2012 12:34:15 -0800 Subject: [PATCH] config: Make git_config_file__ondisk() internal --- include/git2/config.h | 13 ------------- src/config.h | 13 +++++++++++++ 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/include/git2/config.h b/include/git2/config.h index b427b8598..8270aefa4 100644 --- a/include/git2/config.h +++ b/include/git2/config.h @@ -134,19 +134,6 @@ GIT_EXTERN(int) git_config_find_system(char *system_config_path, size_t length); */ GIT_EXTERN(int) git_config_open_default(git_config **out); -/** - * Create a configuration file backend for ondisk files - * - * These are the normal `.gitconfig` files that Core Git - * processes. Note that you first have to add this file to a - * configuration object before you can query it for configuration - * variables. - * - * @param out the new backend - * @param path where the config file is located - */ -GIT_EXTERN(int) git_config_file__ondisk(struct git_config_file **out, const char *path); - /** * Allocate a new configuration object * diff --git a/src/config.h b/src/config.h index a0569ec93..c7595ee79 100644 --- a/src/config.h +++ b/src/config.h @@ -32,4 +32,17 @@ extern int git_config_rename_section( const char *old_section_name, /* eg "branch.dummy" */ const char *new_section_name); /* NULL to drop the old section */ +/** + * Create a configuration file backend for ondisk files + * + * These are the normal `.gitconfig` files that Core Git + * processes. Note that you first have to add this file to a + * configuration object before you can query it for configuration + * variables. + * + * @param out the new backend + * @param path where the config file is located + */ +extern int git_config_file__ondisk(struct git_config_file **out, const char *path); + #endif