Changeset 21759 in vbox for trunk/src/VBox/Main/ApplianceImpl.cpp
- Timestamp:
- Jul 22, 2009 9:32:11 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ApplianceImpl.cpp
r21758 r21759 1007 1007 else if(vrc == VERR_S3_ACCESS_DENIED) 1008 1008 throw setError(E_ACCESSDENIED, 1009 tr("Cannot download file '%s' from S3 storage server (Access denied) "), pszFilename);1009 tr("Cannot download file '%s' from S3 storage server (Access denied). Make sure that your credentials are right. Also check that your host clock is properly synced"), pszFilename); 1010 1010 else if(vrc == VERR_S3_NOT_FOUND) 1011 1011 throw setError(VBOX_E_FILE_ERROR, … … 1908 1908 else if(vrc == VERR_S3_ACCESS_DENIED) 1909 1909 throw setError(E_ACCESSDENIED, 1910 tr("Cannot download file '%s' from S3 storage server (Access denied) "), pszFilename);1910 tr("Cannot download file '%s' from S3 storage server (Access denied). Make sure that your credentials are right. Also check that your host clock is properly synced"), pszFilename); 1911 1911 else if(vrc == VERR_S3_NOT_FOUND) 1912 1912 throw setError(VBOX_E_FILE_ERROR, … … 1939 1939 else if(vrc == VERR_S3_ACCESS_DENIED) 1940 1940 throw setError(E_ACCESSDENIED, 1941 tr("Cannot download file '%s' from S3 storage server (Access denied) "), pszFilename);1941 tr("Cannot download file '%s' from S3 storage server (Access denied). Make sure that your credentials are right. Also check that your host clock is properly synced"), pszFilename); 1942 1942 else 1943 1943 throw setError(VBOX_E_IPRT_ERROR, … … 3048 3048 else if(vrc == VERR_S3_ACCESS_DENIED) 3049 3049 throw setError(E_ACCESSDENIED, 3050 tr("Cannot upload file '%s' to S3 storage server (Access denied) "), pszFilename);3050 tr("Cannot upload file '%s' to S3 storage server (Access denied). Make sure that your credentials are right. Also check that your host clock is properly synced"), pszFilename); 3051 3051 else if(vrc == VERR_S3_NOT_FOUND) 3052 3052 throw setError(VBOX_E_FILE_ERROR,
Note:
See TracChangeset
for help on using the changeset viewer.