> Note that both of --nofilter=path and --nofilter=sort cannot be specified. > > global.c > 201 if (!strcmp(optarg, "sort")) > 202 nofilter = SORT_FILTER; > 203 else if (!strcmp(optarg, "path")) > 204 nofilter = PATH_FILTER;
I think that both options should be accepted at the same time. I have modified above code like follows: diff -r1.135 global.c 202c202 < nofilter = SORT_FILTER; --- > nofilter |= SORT_FILTER; 204c204 < nofilter = PATH_FILTER; --- > nofilter |= PATH_FILTER; -- Shigio YAMAGUCHI <[EMAIL PROTECTED]> - Tama Communications Corporation PGP fingerprint: D1CB 0B89 B346 4AB6 5663 C4B6 3CA5 BBB3 57BE DDA3 _______________________________________________ Bug-global mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-global
