diff options
author | Thomas Graf <tgraf@suug.ch> | 2007-03-22 23:27:39 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-25 22:27:27 -0700 |
commit | 33a0543cd9e090d2c6759e0ed85c3049c6efcc06 (patch) | |
tree | 1dac1a5bd688dd169d08de399be38c03adf5d7ca /net/netlink | |
parent | 267281058c4cfd6a9a173aa957bffa58239f9656 (diff) | |
download | linux-33a0543cd9e090d2c6759e0ed85c3049c6efcc06.tar.gz linux-33a0543cd9e090d2c6759e0ed85c3049c6efcc06.tar.bz2 linux-33a0543cd9e090d2c6759e0ed85c3049c6efcc06.zip |
[NETLINK]: Remove unused groups variable
Leftover from dynamic multicast groups allocation work.
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/netlink')
-rw-r--r-- | net/netlink/af_netlink.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/netlink/af_netlink.c b/net/netlink/af_netlink.c index 04b72d3c1dea..8488c15f2643 100644 --- a/net/netlink/af_netlink.c +++ b/net/netlink/af_netlink.c @@ -396,7 +396,6 @@ static int netlink_create(struct socket *sock, int protocol) { struct module *module = NULL; struct netlink_sock *nlk; - unsigned int groups; int err = 0; sock->state = SS_UNCONNECTED; @@ -418,7 +417,6 @@ static int netlink_create(struct socket *sock, int protocol) if (nl_table[protocol].registered && try_module_get(nl_table[protocol].module)) module = nl_table[protocol].module; - groups = nl_table[protocol].groups; netlink_unlock_table(); if ((err = __netlink_create(sock, protocol)) < 0) |