1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

Wrap two long lines in the previous commit.

This commit is contained in:
Mike Silbersack 2004-04-23 23:29:49 +00:00
parent 2d166c0202
commit 6b2fc10b64
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=128593

View File

@ -416,7 +416,8 @@ in_pcbbind_setup(inp, nam, laddrp, lportp, cred)
* counting down
*/
if (ipport_randomized)
*lastport = first - (arc4random() % (first - last));
*lastport = first -
(arc4random() % (first - last));
count = first - last;
do {
@ -433,7 +434,8 @@ in_pcbbind_setup(inp, nam, laddrp, lportp, cred)
* counting up
*/
if (ipport_randomized)
*lastport = first + (arc4random() % (last - first));
*lastport = first +
(arc4random() % (last - first));
count = last - first;
do {