Fix an issue when pinging a wireless device by name

This commit is contained in:
Tim Young 2017-08-17 15:10:46 -05:00
parent 1c703c60b5
commit 4e9399f9b5
1 changed files with 4 additions and 1 deletions

View File

@ -2450,7 +2450,10 @@ namespace EduNetworkBuilder
answer = IPFromTypeNic(NicType.eth);
if (answer != null)
return answer;
//Otherwise, choose an wireless nic
answer = IPFromTypeNic(NicType.wlan);
if (answer != null)
return answer;
return null;
}