Signed-off-by: Christian Couder <chrisc...@tuxfamily.org> --- builtin/tag.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/builtin/tag.c b/builtin/tag.c index ea55f1d..e7aaaa2 100644 --- a/builtin/tag.c +++ b/builtin/tag.c @@ -259,7 +259,7 @@ static int git_tag_config(const char *var, const char *value, void *cb) int status = git_gpg_config(var, value, cb); if (status) return status; - if (!prefixcmp(var, "column.")) + if (has_prefix(var, "column.")) return git_column_config(var, value, "tag", &colopts); return git_default_config(var, value, cb); } -- 1.8.4.1.566.geca833c -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html