Module Name: src Committed By: rillig Date: Thu Dec 9 22:25:58 UTC 2021
Modified Files: src/usr.bin/make: cond.c Log Message: make: avoid recursion in CondParser_Or Previously, a long chain of '1 || 1 || 1 || 1 || ...' led to a deep recursion. Furhermore, the code didn't match the grammar on superficial reading: the grammar said "or || and", the code said "and || or". No functional change. To generate a diff of this commit: cvs rdiff -u -r1.282 -r1.283 src/usr.bin/make/cond.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.