Skip to content

Commit

Permalink
builtin-log.c: Use 'git_config_string' to get 'format.subjectprefix' …
Browse files Browse the repository at this point in the history
…and 'format.suffix'

Signed-off-by: Brian Hetro <whee@smaertness.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Brian Hetro authored and Junio C Hamano committed Jul 6, 2008
1 parent a41a32b commit 70cff3a
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions builtin-log.c
Original file line number Diff line number Diff line change
Expand Up @@ -234,12 +234,8 @@ static int git_log_config(const char *var, const char *value, void *cb)
{
if (!strcmp(var, "format.pretty"))
return git_config_string(&fmt_pretty, var, value);
if (!strcmp(var, "format.subjectprefix")) {
if (!value)
config_error_nonbool(var);
fmt_patch_subject_prefix = xstrdup(value);
return 0;
}
if (!strcmp(var, "format.subjectprefix"))
return git_config_string(&fmt_patch_subject_prefix, var, value);
if (!strcmp(var, "log.date"))
return git_config_string(&default_date_mode, var, value);
if (!strcmp(var, "log.showroot")) {
Expand Down Expand Up @@ -489,12 +485,8 @@ static int git_format_config(const char *var, const char *value, void *cb)
add_header(value);
return 0;
}
if (!strcmp(var, "format.suffix")) {
if (!value)
return config_error_nonbool(var);
fmt_patch_suffix = xstrdup(value);
return 0;
}
if (!strcmp(var, "format.suffix"))
return git_config_string(&fmt_patch_suffix, var, value);
if (!strcmp(var, "format.cc")) {
if (!value)
return config_error_nonbool(var);
Expand Down

0 comments on commit 70cff3a

Please sign in to comment.