Changeset 54809 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Mar 17, 2015 12:07:04 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r54798 r54809 4881 4881 { 4882 4882 rc = pIMedium->pfnSetSecKeyIf(pIMedium, mpIfSecKey, mpIfSecKeyHlp); 4883 if (RT_FAILURE(rc)) 4883 if (rc == VERR_VD_PASSWORD_INCORRECT) 4884 return setError(VBOX_E_PASSWORD_INCORRECT, tr("The provided password for ID \"%s\" is not correct for at least one disk using this ID"), 4885 strId.c_str()); 4886 else if (RT_FAILURE(rc)) 4884 4887 return setError(E_FAIL, tr("Failed to set the encryption key (%Rrc)"), rc); 4885 4888 }
Note:
See TracChangeset
for help on using the changeset viewer.