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

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