aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6/udp.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv6/udp.c')
-rw-r--r--net/ipv6/udp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c
index 463ae4d448a3..e35921a46689 100644
--- a/net/ipv6/udp.c
+++ b/net/ipv6/udp.c
@@ -983,8 +983,10 @@ static struct udp_seq_afinfo udp6_seq_afinfo = {
983 .name = "udp6", 983 .name = "udp6",
984 .family = AF_INET6, 984 .family = AF_INET6,
985 .hashtable = udp_hash, 985 .hashtable = udp_hash,
986 .seq_show = udp6_seq_show,
987 .seq_fops = &udp6_seq_fops, 986 .seq_fops = &udp6_seq_fops,
987 .seq_ops = {
988 .show = udp6_seq_show,
989 },
988}; 990};
989 991
990int udp6_proc_init(struct net *net) 992int udp6_proc_init(struct net *net)