grep: fix grep -F -e str1 -e str2 (was matching str2 only)
authorDenis Vlasenko <vda.linux@googlemail.com>
Mon, 10 Sep 2007 12:18:32 +0000 (12:18 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Mon, 10 Sep 2007 12:18:32 +0000 (12:18 -0000)
commit04ea11b033b38b8cde6e2f478845d0b756c330b4
tree0e78c558e2505ebf6d65c6d6c194746a3f305ed8
parent476b0700364f1d2fc3879a49ed53c71b4cc776df
grep: fix grep -F -e str1 -e str2 (was matching str2 only)
  by replacing "=" by "|=" here:
  found |= strstr(line, gl->pattern) != NULL;
grep: optimization: stop on first -e match
grep: stop using bss. -40 bytes
findutils/grep.c