diff options
author | tuexen <tuexen@FreeBSD.org> | 2011-05-17 15:46:28 +0000 |
---|---|---|
committer | tuexen <tuexen@FreeBSD.org> | 2011-05-17 15:46:28 +0000 |
commit | 2e7231aa8ac2bc0d1a682ee2c537382eef3ba3f9 (patch) | |
tree | 3fd11612f65c526355d36eede252b83f3d1d1b9b /sys/netinet/sctp_output.c | |
parent | 2b2725eecd9a3c75e1850cd1e89c9bd7d777c4a3 (diff) | |
download | FreeBSD-src-2e7231aa8ac2bc0d1a682ee2c537382eef3ba3f9.zip FreeBSD-src-2e7231aa8ac2bc0d1a682ee2c537382eef3ba3f9.tar.gz |
Fix whitespacing.
Reported by scf@
MFC after: 1 week.
Diffstat (limited to 'sys/netinet/sctp_output.c')
-rw-r--r-- | sys/netinet/sctp_output.c | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/sys/netinet/sctp_output.c b/sys/netinet/sctp_output.c index 0dad4e5..aea43b2 100644 --- a/sys/netinet/sctp_output.c +++ b/sys/netinet/sctp_output.c @@ -2210,26 +2210,26 @@ sctp_is_ifa_addr_preferred(struct sctp_ifa *ifa, * means it is the same scope or higher scope then the destination. * L = loopback, P = private, G = global * ----------------------------------------- - * src | dest | result - * ---------------------------------------- - * L | L | yes - * ----------------------------------------- - * P | L | yes-v4 no-v6 - * ----------------------------------------- - * G | L | yes-v4 no-v6 - * ----------------------------------------- - * L | P | no - * ----------------------------------------- - * P | P | yes - * ----------------------------------------- - * G | P | no - * ----------------------------------------- - * L | G | no - * ----------------------------------------- - * P | G | no - * ----------------------------------------- - * G | G | yes - * ----------------------------------------- + * src | dest | result + * ---------------------------------------- + * L | L | yes + * ----------------------------------------- + * P | L | yes-v4 no-v6 + * ----------------------------------------- + * G | L | yes-v4 no-v6 + * ----------------------------------------- + * L | P | no + * ----------------------------------------- + * P | P | yes + * ----------------------------------------- + * G | P | no + * ----------------------------------------- + * L | G | no + * ----------------------------------------- + * P | G | no + * ----------------------------------------- + * G | G | yes + * ----------------------------------------- */ if (ifa->address.sa.sa_family != fam) { @@ -2310,14 +2310,14 @@ sctp_is_ifa_addr_acceptable(struct sctp_ifa *ifa, * * L = loopback, P = private, G = global * ----------------------------------------- - * src | dest | result + * src | dest | result * ----------------------------------------- * L | L | yes * ----------------------------------------- * P | L | yes-v4 no-v6 * ----------------------------------------- * G | L | yes - * ----------------------------------------- + * ----------------------------------------- * L | P | no * ----------------------------------------- * P | P | yes @@ -2325,7 +2325,7 @@ sctp_is_ifa_addr_acceptable(struct sctp_ifa *ifa, * G | P | yes - May not work * ----------------------------------------- * L | G | no - * ----------------------------------------- + * ----------------------------------------- * P | G | yes - May not work * ----------------------------------------- * G | G | yes |