Browse Source

prism54: bug in getting auth type

There is a missing break statement so SHARED_KEY authentication doesn't
work.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Dan Carpenter 12 years ago
parent
commit
f49aabf816
1 changed files with 1 additions and 0 deletions
  1. 1 0
      drivers/net/wireless/prism54/isl_ioctl.c

+ 1 - 0
drivers/net/wireless/prism54/isl_ioctl.c

@@ -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;