Changeset 82017 in vbox
- Timestamp:
- Nov 20, 2019 10:28:05 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 134820
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevATA.cpp
r82015 r82017 8085 8085 if (rc == VERR_CFGM_NOT_ENOUGH_SPACE) 8086 8086 return PDMDEV_SET_ERROR(pDevIns, VERR_INVALID_PARAMETER, 8087 N_("PIIX3 configuration error: \"SerialNumber\" is longer than 20 bytes"));8087 N_("PIIX3 configuration error: \"SerialNumber\" is longer than 20 bytes")); 8088 8088 return PDMDEV_SET_ERROR(pDevIns, rc, 8089 N_("PIIX3 configuration error: failed to read \"SerialNumber\" as string"));8089 N_("PIIX3 configuration error: failed to read \"SerialNumber\" as string")); 8090 8090 } 8091 8091 … … 8096 8096 if (rc == VERR_CFGM_NOT_ENOUGH_SPACE) 8097 8097 return PDMDEV_SET_ERROR(pDevIns, VERR_INVALID_PARAMETER, 8098 N_("PIIX3 configuration error: \"FirmwareRevision\" is longer than 8 bytes"));8098 N_("PIIX3 configuration error: \"FirmwareRevision\" is longer than 8 bytes")); 8099 8099 return PDMDEV_SET_ERROR(pDevIns, rc, 8100 N_("PIIX3 configuration error: failed to read \"FirmwareRevision\" as string"));8100 N_("PIIX3 configuration error: failed to read \"FirmwareRevision\" as string")); 8101 8101 } 8102 8102 … … 8107 8107 if (rc == VERR_CFGM_NOT_ENOUGH_SPACE) 8108 8108 return PDMDEV_SET_ERROR(pDevIns, VERR_INVALID_PARAMETER, 8109 N_("PIIX3 configuration error: \"ModelNumber\" is longer than 40 bytes"));8109 N_("PIIX3 configuration error: \"ModelNumber\" is longer than 40 bytes")); 8110 8110 return PDMDEV_SET_ERROR(pDevIns, rc, 8111 N_("PIIX3 configuration error: failed to read \"ModelNumber\" as string"));8111 N_("PIIX3 configuration error: failed to read \"ModelNumber\" as string")); 8112 8112 } 8113 8113 … … 8121 8121 if (rc == VERR_CFGM_NOT_ENOUGH_SPACE) 8122 8122 return PDMDEV_SET_ERROR(pDevIns, VERR_INVALID_PARAMETER, 8123 N_("PIIX3 configuration error: \"ATAPIVendorId\" is longer than 16 bytes"));8123 N_("PIIX3 configuration error: \"ATAPIVendorId\" is longer than 16 bytes")); 8124 8124 return PDMDEV_SET_ERROR(pDevIns, rc, 8125 N_("PIIX3 configuration error: failed to read \"ATAPIVendorId\" as string"));8125 N_("PIIX3 configuration error: failed to read \"ATAPIVendorId\" as string")); 8126 8126 } 8127 8127 … … 8132 8132 if (rc == VERR_CFGM_NOT_ENOUGH_SPACE) 8133 8133 return PDMDEV_SET_ERROR(pDevIns, VERR_INVALID_PARAMETER, 8134 N_("PIIX3 configuration error: \"ATAPIProductId\" is longer than 16 bytes"));8134 N_("PIIX3 configuration error: \"ATAPIProductId\" is longer than 16 bytes")); 8135 8135 return PDMDEV_SET_ERROR(pDevIns, rc, 8136 N_("PIIX3 configuration error: failed to read \"ATAPIProductId\" as string"));8136 N_("PIIX3 configuration error: failed to read \"ATAPIProductId\" as string")); 8137 8137 } 8138 8138 … … 8143 8143 if (rc == VERR_CFGM_NOT_ENOUGH_SPACE) 8144 8144 return PDMDEV_SET_ERROR(pDevIns, VERR_INVALID_PARAMETER, 8145 N_("PIIX3 configuration error: \"ATAPIRevision\" is longer than 4 bytes"));8145 N_("PIIX3 configuration error: \"ATAPIRevision\" is longer than 4 bytes")); 8146 8146 return PDMDEV_SET_ERROR(pDevIns, rc, 8147 N_("PIIX3 configuration error: failed to read \"ATAPIRevision\" as string"));8147 N_("PIIX3 configuration error: failed to read \"ATAPIRevision\" as string")); 8148 8148 } 8149 8149 … … 8151 8151 if (RT_FAILURE(rc)) 8152 8152 return PDMDEV_SET_ERROR(pDevIns, rc, 8153 N_("PIIX3 configuration error: failed to read \"OverwriteInquiry\" as boolean"));8153 N_("PIIX3 configuration error: failed to read \"OverwriteInquiry\" as boolean")); 8154 8154 } 8155 8155 }
Note:
See TracChangeset
for help on using the changeset viewer.