2003-07-26 Stepan Kasal * src/cmp.c (specify_comparison_type): Don't complain if the same comparison_type was specified twice. --- diffutils-2.8.4/src/cmp.c.orig Sat Jul 26 07:38:05 2003 +++ diffutils-2.8.4/src/cmp.c Sat Jul 26 07:40:57 2003 @@ -142,7 +142,7 @@ parse_ignore_initial (char **argptr, cha static void specify_comparison_type (enum comparison_type t) { - if (comparison_type) + if (comparison_type && comparison_type != t) try_help ("options -l and -s are incompatible", 0); comparison_type = t; }