summaryrefslogtreecommitdiff
path: root/src/config.h
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2011-05-20 03:20:12 +0300
committerVicent Marti <tanoku@gmail.com>2011-05-20 03:20:12 +0300
commitb0b527e0ad7b2b0d58e3d5039339d29892206f2d (patch)
treee8a6a8bc5d5b090d158d38cc02e8e2a9b42def14 /src/config.h
parent8adbf2ed12b7067660a4012f54d76650663edee1 (diff)
downloadlibgit2-b0b527e0ad7b2b0d58e3d5039339d29892206f2d.tar.gz
config: Cleanup & renaming of the external API
"git_config_backend" have been renamed to "git_config_file", which implements a generic interface to access a configuration file -- be it either on disk, from a DB or whatever mumbojumbo. I think this makes more sense.
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.h b/src/config.h
index 104e01633..8b521543c 100644
--- a/src/config.h
+++ b/src/config.h
@@ -8,7 +8,7 @@
#define GIT_CONFIG_FILENAME ".gitconfig"
struct git_config {
- git_vector backends;
+ git_vector files;
};
#endif