Use "git_config_string" to simplify "builtin-gc.c" code where "prune_expire" is set

Signed-off-by: David Bryson <david@statichacks.org>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
This commit is contained in:
David Bryson 2008-09-30 13:28:58 -07:00 коммит произвёл Shawn O. Pearce
Родитель 87539416fd
Коммит d3154b44c2
1 изменённых файлов: 3 добавлений и 6 удалений

Просмотреть файл

@ -26,7 +26,7 @@ static int pack_refs = 1;
static int aggressive_window = -1; static int aggressive_window = -1;
static int gc_auto_threshold = 6700; static int gc_auto_threshold = 6700;
static int gc_auto_pack_limit = 50; static int gc_auto_pack_limit = 50;
static char *prune_expire = "2.weeks.ago"; static const char *prune_expire = "2.weeks.ago";
#define MAX_ADD 10 #define MAX_ADD 10
static const char *argv_pack_refs[] = {"pack-refs", "--all", "--prune", NULL}; static const char *argv_pack_refs[] = {"pack-refs", "--all", "--prune", NULL};
@ -57,15 +57,12 @@ static int gc_config(const char *var, const char *value, void *cb)
return 0; return 0;
} }
if (!strcmp(var, "gc.pruneexpire")) { if (!strcmp(var, "gc.pruneexpire")) {
if (!value) if (value && strcmp(value, "now")) {
return config_error_nonbool(var);
if (strcmp(value, "now")) {
unsigned long now = approxidate("now"); unsigned long now = approxidate("now");
if (approxidate(value) >= now) if (approxidate(value) >= now)
return error("Invalid %s: '%s'", var, value); return error("Invalid %s: '%s'", var, value);
} }
prune_expire = xstrdup(value); return git_config_string(&prune_expire, var, value);
return 0;
} }
return git_default_config(var, value, cb); return git_default_config(var, value, cb);
} }