diff options
author | Stefan Eissing <icing@apache.org> | 2021-04-13 13:27:09 +0200 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2021-04-13 13:27:09 +0200 |
commit | eb5a6fe0b944e21bd061e85d1a46c135d3dcbdc4 (patch) | |
tree | 13cab336d11712c08e1d8be50e0358c9fd8cbcfb /modules/md/mod_md_ocsp.c | |
parent | update the damn log tags. (diff) | |
download | apache2-eb5a6fe0b944e21bd061e85d1a46c135d3dcbdc4.tar.xz apache2-eb5a6fe0b944e21bd061e85d1a46c135d3dcbdc4.zip |
mod_md: fixed a conversion warning, bumped version number.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1888726 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/md/mod_md_ocsp.c')
-rw-r--r-- | modules/md/mod_md_ocsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/md/mod_md_ocsp.c b/modules/md/mod_md_ocsp.c index 4f288631f9..4aa9ed29dd 100644 --- a/modules/md/mod_md_ocsp.c +++ b/modules/md/mod_md_ocsp.c @@ -159,7 +159,7 @@ int md_ocsp_get_stapling_status(unsigned char **pder, int *pderlen, rv = md_ocsp_get_status(ocsp_copy_der, &ctx, sc->mc->ocsp, &id, c->pool, md); if (APR_STATUS_IS_ENOENT(rv)) goto declined; *pder = ctx.der; - *pderlen = ctx.der_len; + *pderlen = (int)ctx.der_len; return OK; declined: |