rev-list --no-merges: argument parsing fix.

Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Junio C Hamano 2006-03-28 00:04:50 -08:00
parent acb7257729
commit 5cdeae71ea

View file

@ -587,7 +587,7 @@ int setup_revisions(int argc, const char **argv, struct rev_info *revs, const ch
revs->remove_empty_trees = 1;
continue;
}
if (!strncmp(arg, "--no-merges", 11)) {
if (!strcmp(arg, "--no-merges")) {
revs->no_merges = 1;
continue;
}