-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixup! fixup! Change all C++-style comments to C-style comments
- Loading branch information
Showing
2 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
/** | ||
/** | ||
* @file crl_mgmt.c | ||
* | ||
* | ||
* @brief Handling CRLs during certificate revocation check | ||
* | ||
* @copyright Copyright (c) Siemens Mobility GmbH, 2021 | ||
* | ||
* @author David von Oheimb <[email protected]> | ||
* | ||
* This work is licensed under the terms of the Apache Software License | ||
* This work is licensed under the terms of the Apache Software License | ||
* 2.0. See the COPYING file in the top-level directory. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
|
@@ -195,7 +195,7 @@ static int put_crl_into_cache(X509_CRL * crl, const char * cachefile) | |
if (out != NULL) { | ||
/* write the CRL into an ASN1 formatted file */ | ||
res = (int)i2d_X509_CRL_bio(out, crl); | ||
/* | ||
/* | ||
* PEM format would be this, different formats are currently not supported | ||
* res = PEM_write_bio_X509_CRL(out, crl); | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
/** | ||
/** | ||
* @file log.c | ||
* | ||
* | ||
* @brief Logging facility which, by default, outputs to syslog and console | ||
* | ||
* @copyright Copyright (c) Siemens Mobility GmbH, 2021 | ||
* | ||
* @author David von Oheimb <[email protected]> | ||
* | ||
* This work is licensed under the terms of the Apache Software License | ||
* This work is licensed under the terms of the Apache Software License | ||
* 2.0. See the COPYING file in the top-level directory. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
|
@@ -22,7 +22,7 @@ | |
|
||
#include <assert.h> | ||
|
||
/* | ||
/* | ||
* use the GNU-specific `strerror_r` | ||
* https://man7.org/linux/man-pages/man3/strerror.3.html : SYNOPSIS | ||
*/ | ||
|