Changeset 4495 in vbox for trunk/src/VBox
- Timestamp:
- Sep 3, 2007 1:25:54 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp
r4352 r4495 244 244 * @param pAddress An array into which to store the newly generated address 245 245 */ 246 int GenerateMACAddress(char p Address[MAC_STRING_LEN + 1])246 int GenerateMACAddress(char pszAddress[MAC_STRING_LEN + 1]) 247 247 { 248 248 /* … … 259 259 return rc; 260 260 } 261 RTStrPrintf (pAddress, MAC_STRING_LEN + 1, "080027%02X%02X%02X",262 263 LogFlowFunc(("generated MAC: '%s'\n", p Address));261 RTStrPrintf(pszAddress, MAC_STRING_LEN + 1, "080027%02X%02X%02X", 262 uuid.au8[0], uuid.au8[1], uuid.au8[2]); 263 LogFlowFunc(("generated MAC: '%s'\n", pszAddress)); 264 264 return VINF_SUCCESS; 265 265 } … … 1207 1207 rc = CFGMR3InsertString(pCfg, "FloppyDevice", "i82078"); UPDATE_RC(); 1208 1208 rc = CFGMR3InsertInteger(pCfg, "IOAPIC", g_fIOAPIC); UPDATE_RC(); 1209 RTUUID Uuid; 1210 RTUuidClear(&Uuid); 1211 rc = CFGMR3InsertBytes(pCfg, "UUID", &Uuid, sizeof(Uuid)); UPDATE_RC(); 1209 1212 1210 1213 /* Default: no bios logo. */
Note:
See TracChangeset
for help on using the changeset viewer.