Re: Just annooyng Bug...
Hrvoje Niksic <[email protected]>
| Newsgroups | gmane.comp.web.wget.patches |
|---|---|
| Message-ID | <[email protected]> |
Larry, I believe the optimization you're referring to in the ChangeLog is incorrect. Your change goes like this: - if (opt.page_requisites - && (depth == opt.reclevel || depth == opt.reclevel + 1)) + if (opt.page_requisites && depth <= opt.reclevel + 1) The original condition evaluates to true iff DEPTH equals opt.reclevel or opt.reclevel+1. With your modification it also evaluates to true when depth is smaller than opt.reclevel. That is not correct.