https://issues.apache.org/bugzilla/show_bug.cgi?id=44806
--- Comment #14 from rahul <[EMAIL PROTECTED]> 2008-06-02 23:20:59 PST --- (In reply to comment #12) > 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)". > the value r starts with '0' and does not change if port was not specified so you dont need to check 'port? : xxxx : 1 , the value would be r+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: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
