summaryrefslogtreecommitdiff
path: root/src/config.h
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@elego.de>2011-03-29 12:29:21 +0200
committerCarlos Martín Nieto <cmn@elego.de>2011-03-29 12:48:47 +0200
commit238df5590cfb9f1cfc340938188b2425f9510f48 (patch)
tree9ff1b15dc763bc0afa290913d3d3ff0fe5ddd3f9 /src/config.h
parent05314b5bf449211726ca7d84f15db3077375a3cd (diff)
downloadlibgit2-238df5590cfb9f1cfc340938188b2425f9510f48.tar.gz
Rename git_config_{type,var} to git_cvar{_type,}
Signed-off-by: Carlos Martín Nieto <cmn@elego.de>
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/config.h b/src/config.h
index 07d123ef5..2aa9ec804 100644
--- a/src/config.h
+++ b/src/config.h
@@ -18,10 +18,10 @@ typedef enum {
GIT_VAR_INT,
GIT_VAR_BOOL,
GIT_VAR_STR
-} git_config_type;
+} git_cvar_type;
-struct git_config_var {
- git_config_type type;
+struct git_cvar {
+ git_cvar_type type;
char *name;
union {
unsigned char boolean;