Merge pull request #4366 from skyl/GenericBsd-get_default_interfaces
fixes 4365 - Mac with cisco vpn client, GenericBsdIfconfigNetwork get_default_interfaces fails with index out of range
This commit is contained in:
commit
3f51da3988
1 changed files with 1 additions and 1 deletions
|
@ -1576,7 +1576,7 @@ class GenericBsdIfconfigNetwork(Network):
|
|||
for line in lines:
|
||||
words = line.split()
|
||||
# Collect output from route command
|
||||
if len(words) > 0:
|
||||
if len(words) > 1:
|
||||
if words[0] == 'interface:':
|
||||
interface[v]['interface'] = words[1]
|
||||
if words[0] == 'gateway:':
|
||||
|
|
Loading…
Reference in a new issue