diff options
Diffstat (limited to 'net/llc/af_llc.c')
-rw-r--r-- | net/llc/af_llc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/llc/af_llc.c b/net/llc/af_llc.c index 5266c286b260..3a66546cad06 100644 --- a/net/llc/af_llc.c +++ b/net/llc/af_llc.c | |||
@@ -158,7 +158,7 @@ static int llc_ui_create(struct net *net, struct socket *sock, int protocol, | |||
158 | if (!capable(CAP_NET_RAW)) | 158 | if (!capable(CAP_NET_RAW)) |
159 | return -EPERM; | 159 | return -EPERM; |
160 | 160 | ||
161 | if (net != &init_net) | 161 | if (!net_eq(net, &init_net)) |
162 | return -EAFNOSUPPORT; | 162 | return -EAFNOSUPPORT; |
163 | 163 | ||
164 | if (likely(sock->type == SOCK_DGRAM || sock->type == SOCK_STREAM)) { | 164 | if (likely(sock->type == SOCK_DGRAM || sock->type == SOCK_STREAM)) { |