Changeset 18018 in vbox for trunk/src/VBox/Main
- Timestamp:
- Mar 17, 2009 1:00:36 PM (16 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/darwin/NetIfList-darwin.cpp
r17981 r18018 317 317 318 318 HostNetworkInterfaceType_T enmType; 319 if (strncmp("vbox ", pNew->szName, 4))319 if (strncmp("vboxnet", pNew->szName, 7)) 320 320 enmType = HostNetworkInterfaceType_Bridged; 321 321 else -
trunk/src/VBox/Main/linux/NetIfList-linux.cpp
r17834 r18018 148 148 149 149 HostNetworkInterfaceType_T enmType; 150 if (strncmp("vbox ", pszName, 4))150 if (strncmp("vboxnet", pszName, 7)) 151 151 enmType = HostNetworkInterfaceType_Bridged; 152 152 else -
trunk/src/VBox/Main/solaris/NetIfList-solaris.cpp
r17971 r18018 194 194 195 195 HostNetworkInterfaceType_T enmType; 196 if (strncmp("vbox ", szNICInstance, 4))196 if (strncmp("vboxnet", szNICInstance, 7)) 197 197 enmType = HostNetworkInterfaceType_Bridged; 198 198 else
Note:
See TracChangeset
for help on using the changeset viewer.