diff options
author | silby <silby@FreeBSD.org> | 2004-04-23 23:29:49 +0000 |
---|---|---|
committer | silby <silby@FreeBSD.org> | 2004-04-23 23:29:49 +0000 |
commit | 67d79f0cfb20d67bff147283fb167115ae7943bf (patch) | |
tree | 97cf60a12ebfd3698d8edec2348b9c746157ccd7 | |
parent | 7357a88fdbc1ed5cd677cc232be3591207aaa45b (diff) | |
download | FreeBSD-src-67d79f0cfb20d67bff147283fb167115ae7943bf.zip FreeBSD-src-67d79f0cfb20d67bff147283fb167115ae7943bf.tar.gz |
Wrap two long lines in the previous commit.
-rw-r--r-- | sys/netinet/in_pcb.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/netinet/in_pcb.c b/sys/netinet/in_pcb.c index 516aa46..c68ed23 100644 --- a/sys/netinet/in_pcb.c +++ b/sys/netinet/in_pcb.c @@ -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 { |