[rs-commit] r482 - in /mod_ca/trunk: ChangeLog mod_ca_engine.c
rs-commit at redwax.eu
rs-commit at redwax.eu
Wed Oct 16 12:19:36 CEST 2024
Author: minfrin at redwax.eu
Date: Wed Oct 16 12:19:33 2024
New Revision: 482
Log:
mod_ca_engine: Fix signedness warnings related to bitwise
flags.
Modified:
mod_ca/trunk/ChangeLog
mod_ca/trunk/mod_ca_engine.c
Modified: mod_ca/trunk/ChangeLog
==============================================================================
--- mod_ca/trunk/ChangeLog (original)
+++ mod_ca/trunk/ChangeLog Wed Oct 16 12:19:33 2024
@@ -1,5 +1,8 @@
Changes with v0.2.4
+
+ *) mod_ca_engine: Fix signedness warnings related to bitwise
+ flags. [Graham Leggett]
*) mod_ca_engine: Allow the module to build and give a warning
when OpenSSL ENGINE support is not present in OpenSSL.
Modified: mod_ca/trunk/mod_ca_engine.c
==============================================================================
--- mod_ca/trunk/mod_ca_engine.c (original)
+++ mod_ca/trunk/mod_ca_engine.c Wed Oct 16 12:19:33 2024
@@ -89,9 +89,9 @@
typedef struct
{
- int device_set:1;
- int pre_set:1;
- int post_set:1;
+ unsigned int device_set:1;
+ unsigned int pre_set:1;
+ unsigned int post_set:1;
const char *device;
apr_array_header_t *pre;
apr_array_header_t *post;
More information about the rs-commit
mailing list