Changeset 105658 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Aug 13, 2024 10:35:19 AM (7 months ago)
- svn:sync-xref-src-repo-rev:
- 164351
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r105605 r105658 9561 9561 newNVRAMFile.stripSuffix(); 9562 9562 newNVRAMFile += ".nvram"; 9563 RT FileRename(NVRAMFile.c_str(), newNVRAMFile.c_str(), 0);9563 RTPathRename(NVRAMFile.c_str(), newNVRAMFile.c_str(), 0); 9564 9564 } 9565 9565 } … … 9610 9610 RTFileRename(newConfigFile.c_str(), configFile.c_str(), 0); 9611 9611 if (NVRAMFile.isNotEmpty() && newNVRAMFile.isNotEmpty()) 9612 RT FileRename(newNVRAMFile.c_str(), NVRAMFile.c_str(), 0);9612 RTPathRename(newNVRAMFile.c_str(), NVRAMFile.c_str(), 0); 9613 9613 } 9614 9614 if (dirRenamed)
Note:
See TracChangeset
for help on using the changeset viewer.