Changeset 94789 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- May 3, 2022 7:00:13 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r94784 r94789 676 676 mData->mAccessError = com::ErrorInfo(); 677 677 678 throwsetError(VBOX_E_PASSWORD_INCORRECT,679 680 678 setError(VBOX_E_PASSWORD_INCORRECT, 679 tr("Decryption of the machine {%RTuuid} failed. Incorrect or unknown password"), 680 mData->pMachineConfigFile->uuid.raw()); 681 681 } 682 682 else … … 1001 1001 1002 1002 if (mData->pMachineConfigFile->enmParseState == settings::MachineConfigFile::ParseState_PasswordError) 1003 throw setError(VBOX_E_PASSWORD_INCORRECT, 1004 tr("Config decryption of the machine {%RTuuid} failed. Incorrect or unknown password"), 1005 mData->pMachineConfigFile->uuid.raw()); 1003 rc = setError(VBOX_E_PASSWORD_INCORRECT, 1004 tr("Config decryption of the machine {%RTuuid} failed. Incorrect or unknown password"), 1005 mData->pMachineConfigFile->uuid.raw()); 1006 else 1006 1007 #endif 1007 1008 rc = i_loadMachineDataFromSettings(*mData->pMachineConfigFile, 1009 NULL /* const Guid *puuidRegistry */); 1008 rc = i_loadMachineDataFromSettings(*mData->pMachineConfigFile, 1009 NULL /* const Guid *puuidRegistry */); 1010 1010 if (FAILED(rc)) throw rc; 1011 1011 }
Note:
See TracChangeset
for help on using the changeset viewer.