I ack the patch, though --show-breaks could use the same treatment. jon.
On 7/5/05, Junio C Hamano <[EMAIL PROTECTED]> wrote: > The --merge-order flag does not take parameter so there is no > point doing strncmp with the length. > > Signed-off-by: Junio C Hamano <[EMAIL PROTECTED]> > --- > > rev-list.c | 2 +- > 1 file changed, 1 insertions(+), 1 deletions(-) > > diff --git a/rev-list.c b/rev-list.c > --- a/rev-list.c > +++ b/rev-list.c > @@ -462,7 +462,7 @@ int main(int argc, char **argv) > limited = 1; > continue; > } > - if (!strncmp(arg, "--merge-order", 13)) { > + if (!strcmp(arg, "--merge-order")) { > merge_order = 1; > continue; > } > ------------------------------------------------ > > -- homepage: http://www.zeta.org.au/~jon/ blog: http://orwelliantremors.blogspot.com/ - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html