Browse Source

eapol_test: Fix -R option to not replace -s option value

Commit e9852462d58750e2ec4be498e82db0e0a2dfaf7f ('eapol_test: Add PC/SC
reader and PIN command line arguments') did not add break to the switch
statement for the new -R command line option.

Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
Dmitry Shmidt 10 years ago
parent
commit
1de809e152
1 changed files with 1 additions and 0 deletions
  1. 1 0
      wpa_supplicant/eapol_test.c

+ 1 - 0
wpa_supplicant/eapol_test.c

@@ -1267,6 +1267,7 @@ int main(int argc, char *argv[])
 			break;
 		case 'R':
 			eapol_test.pcsc_reader = optarg;
+			break;
 		case 's':
 			as_secret = optarg;
 			break;