BIND 10 trac3069, created. 029dc6aa03d7d72d60cb424f1121d916064cd6a4 [3036] Corrected order of operations in perfdhcp unit test.
BIND 10 source code commits
bind10-changes at lists.isc.org
Mon Aug 5 10:34:13 UTC 2013
The branch, trac3069 has been created
at 029dc6aa03d7d72d60cb424f1121d916064cd6a4 (commit)
- Log -----------------------------------------------------------------
commit 029dc6aa03d7d72d60cb424f1121d916064cd6a4
Author: Marcin Siodelski <marcin at isc.org>
Date: Mon Aug 5 12:33:55 2013 +0200
[3036] Corrected order of operations in perfdhcp unit test.
The following statement 'buf[i + 1] << 8 + buf[i] & 0xFF' was replaced
with this '(buf[i + 1] << 8) + (buf[i] & 0xFF)' because + operator takes
precedence over << operator.
-----------------------------------------------------------------------
More information about the bind10-changes
mailing list