Commit f49aabf8 authored by Dan Carpenter's avatar Dan Carpenter Committed by John W. Linville

prism54: bug in getting auth type

There is a missing break statement so SHARED_KEY authentication doesn't
work.
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent e03e8ddb
......@@ -1503,6 +1503,7 @@ static int prism54_get_auth(struct net_device *ndev,
case DOT11_AUTH_BOTH:
case DOT11_AUTH_SK:
param->value = IW_AUTH_ALG_SHARED_KEY;
break;
case DOT11_AUTH_NONE:
default:
param->value = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment