Commit 238df559 by Carlos Martín Nieto

Rename git_config_{type,var} to git_cvar{_type,}

Signed-off-by: Carlos Martín Nieto <cmn@elego.de>
parent 05314b5b
......@@ -126,7 +126,7 @@ typedef struct git_index git_index;
typedef struct git_config git_config;
/** Memory representation of a config variable */
typedef struct git_config_var git_config_var;
typedef struct git_cvar git_cvar;
/** Time in a signature */
typedef struct git_time {
......
......@@ -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;
......
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