File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -210,21 +210,21 @@ func NewErrExistingCertVidNotEqualAccountVid(subject string, subjectKeyID string
210
210
func NewErrRootCertVidNotEqualToAccountVidOrCertVid (rootVID int32 , accountVID int32 , certVID int32 ) error {
211
211
if rootVID != certVID {
212
212
return sdkerrors .Wrapf (ErrCertVidNotEqualToRootVid ,
213
- "Root certificate is VID scoped: An intermediate certificate must be also VID scoped to the same VID as a root one: " +
213
+ "Root certificate is VID scoped: A child certificate must be also VID scoped to the same VID as a root one: " +
214
214
"Root certificate's VID = %v, Certificate's VID = %v" ,
215
215
rootVID , certVID )
216
216
}
217
217
218
218
return sdkerrors .Wrapf (ErrCertVidNotEqualAccountVid ,
219
219
"Root certificate is VID scoped: " +
220
- "Only a Vendor associated with this VID can add an intermediate certificate: " +
220
+ "Only a Vendor associated with this VID can add a child certificate: " +
221
221
"Root certificate's VID = %v, Account VID = %v" ,
222
222
rootVID , accountVID )
223
223
}
224
224
225
225
func NewErrAccountVidNotEqualToCertVid (accountVID int32 , certVID int32 ) error {
226
226
return sdkerrors .Wrapf (ErrCertVidNotEqualAccountVid ,
227
- "Certificate is VID scoped: Only a Vendor associated with this VID can add an intermediate certificate: " +
227
+ "Certificate is VID scoped: Only a vendor associated with this VID can add this certificate " +
228
228
"Account VID = %v, Certificate's VID = %v" ,
229
229
accountVID , certVID )
230
230
}
You can’t perform that action at this time.
0 commit comments