Skip to content

Commit

Permalink
fixup! fixup! Change all C++-style comments to C-style comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kiron-mx committed Jan 29, 2024
1 parent c818ae9 commit af60fb6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/certstatus/crl_mgmt.c
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
Expand Down Expand Up @@ -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);
*/
Expand Down
8 changes: 4 additions & 4 deletions src/util/log.c
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
Expand All @@ -22,7 +22,7 @@

#include <assert.h>

/*
/*
* use the GNU-specific `strerror_r`
* https://man7.org/linux/man-pages/man3/strerror.3.html : SYNOPSIS
*/
Expand Down

0 comments on commit af60fb6

Please sign in to comment.