1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-11-05 14:57:30 +01:00

Fix typo error on re-selecting stored target while loading a previously run module.

git-svn-id: file:///home/svn/framework3/trunk@11379 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
Matt Weeks 2010-12-20 01:59:29 +00:00
parent d390c2eb80
commit a3126ad8b5
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -62,7 +62,7 @@ public class ModulePopup extends MsfFrame implements TreeSelectionListener{
for (Component comp : mainPanel.getComponents()){
if(comp instanceof JRadioButton){
JRadioButton but = (JRadioButton)comp;
if(but.getName().equals("targetsButton"+target)){
if(but.getName().equals("targetButton"+target)){
but.setSelected(true);
break;
}