mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 980848: use c-style comments in c files r=cviecco DONTBUILD
This commit is contained in:
parent
ae206c0421
commit
86a2cb9b9c
@ -1779,14 +1779,14 @@ SignCert(CERTCertDBHandle *handle, CERTCertificate *cert, PRBool selfsign,
|
||||
|
||||
switch(certVersion) {
|
||||
case (SEC_CERTIFICATE_VERSION_1):
|
||||
// The initial version for x509 certificates is version one
|
||||
// and this default value must be an implicit DER encoding.
|
||||
/* The initial version for x509 certificates is version one
|
||||
* and this default value must be an implicit DER encoding. */
|
||||
cert->version.data = NULL;
|
||||
cert->version.len = 0;
|
||||
break;
|
||||
case (SEC_CERTIFICATE_VERSION_2):
|
||||
case (SEC_CERTIFICATE_VERSION_3):
|
||||
case 3: // unspecified format (would be version 4 certificate).
|
||||
case 3: /* unspecified format (would be version 4 certificate). */
|
||||
*(cert->version.data) = certVersion;
|
||||
cert->version.len = 1;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user