- Timestamp:
- Dec 15, 2008 12:21:54 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl2.cpp
r15497 r15498 889 889 { 890 890 if (values [i]) 891 rc = CFGMR3InsertString (pVDC, Utf8Str (names [i]), 892 Utf8Str (values [i])); RC_CHECK(); 893 if ( names [i] == L"HostIPStack" 894 && values [i] == L"0") 895 fHostIP = false; 891 { 892 Utf8Str name = names [i]; 893 Utf8Str value = values [i]; 894 rc = CFGMR3InsertString (pVDC, name, value); 895 if ( !(name.compare("HostIPStack")) 896 && !(value.compare("0"))) 897 fHostIP = false; 898 } 896 899 } 897 900 /* Custom code: put marker to not use host IP stack to driver … … 899 902 if (!fHostIP) 900 903 { 901 rc = CFGMR3Insert String (pCfg, "HostIPStack", "0");RC_CHECK();904 rc = CFGMR3InsertInteger (pCfg, "HostIPStack", 0); RC_CHECK(); 902 905 } 903 906 }
Note:
See TracChangeset
for help on using the changeset viewer.