merge: let custom strategies intervene in trivial merges
[gitweb.git] / builtin / merge.c
index 37ce4f589f6582abf0d1ef5bd263f590a16853d5..e48e90bb696e0aed31707f43199bfc8d8d070894 100644 (file)
@@ -131,6 +131,7 @@ static struct strategy *get_strategy(const char *name)
 
        ret = xcalloc(1, sizeof(struct strategy));
        ret->name = xstrdup(name);
+       ret->attr = NO_TRIVIAL;
        return ret;
 }