diff options
author | 2015-02-06 03:04:49 +0000 | |
---|---|---|
committer | 2015-02-06 03:04:49 +0000 | |
commit | 07e170f9752f96ae2e740359066216955133721e (patch) | |
tree | 58f8d22029f039db8e6d0b49ceec0b51a4f13c6f | |
parent | better handle empty .Bd .Bl .D1 .Dl blocks (diff) | |
download | wireguard-openbsd-07e170f9752f96ae2e740359066216955133721e.tar.xz wireguard-openbsd-07e170f9752f96ae2e740359066216955133721e.zip |
style(9) nit
ok claudio@
-rw-r--r-- | sys/net/pfkeyv2_convert.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/net/pfkeyv2_convert.c b/sys/net/pfkeyv2_convert.c index 3f6f912ebaf..95e6429cd7d 100644 --- a/sys/net/pfkeyv2_convert.c +++ b/sys/net/pfkeyv2_convert.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfkeyv2_convert.c,v 1.46 2015/01/24 00:29:06 deraadt Exp $ */ +/* $OpenBSD: pfkeyv2_convert.c,v 1.47 2015/02/06 03:04:49 blambert Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@keromytis.org) * @@ -466,8 +466,7 @@ import_flow(struct sockaddr_encap *flow, struct sockaddr_encap *flowmask, flow->sen_family = flowmask->sen_family = PF_KEY; flow->sen_len = flowmask->sen_len = SENT_LEN; - switch (src->sa.sa_family) - { + switch (src->sa.sa_family) { case AF_INET: /* netmask handling */ rt_maskedcopy(&src->sa, &src->sa, &srcmask->sa); |