https://issues.apache.org/bugzilla/show_bug.cgi?id=44806
--- Comment #12 from D. Stussy <apache+bugreports@kd6lvw.ampr.org> 2008-06-02 15:17:25
PST ---
Parser - afterthought:
++ psf->bind_range = min( port ? MIN_RANGE : 1, r + 1 );
should be:
++ psf->bind_range = port ? min( MIN_RANGE, r + 1 ) : 1;
If port == 0, r == 0 also, so we don't have to evaluate "min(1,1)".
--
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org
|