summaryrefslogtreecommitdiff
path: root/lib/libcrypto/comp/c_rle.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libcrypto/comp/c_rle.c')
-rw-r--r--lib/libcrypto/comp/c_rle.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/lib/libcrypto/comp/c_rle.c b/lib/libcrypto/comp/c_rle.c
index 7a5db298c5e..48e48cbb7aa 100644
--- a/lib/libcrypto/comp/c_rle.c
+++ b/lib/libcrypto/comp/c_rle.c
@@ -10,14 +10,10 @@ static int rle_expand_block(COMP_CTX *ctx, unsigned char *out,
unsigned int olen, unsigned char *in, unsigned int ilen);
static COMP_METHOD rle_method = {
- NID_rle_compression,
- LN_rle_compression,
- NULL,
- NULL,
- rle_compress_block,
- rle_expand_block,
- NULL,
- NULL,
+ .type = NID_rle_compression,
+ .name = LN_rle_compression,
+ .compress = rle_compress_block,
+ .expand = rle_expand_block
};
COMP_METHOD *