As with RSA, which was modified recently, this change makes it possible to
[oweals/openssl.git] / crypto / comp / c_rle.c
index 32fa05fa9ae984383a3c3f6b6a4049d4f79181ee..efd366fa2239aa08594f50c3d3fe4a266164be55 100644 (file)
@@ -1,8 +1,8 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
-#include "objects.h"
-#include "comp.h"
+#include <openssl/objects.h>
+#include <openssl/comp.h>
 
 static int rle_compress_block(COMP_CTX *ctx, unsigned char *out,
        unsigned int olen, unsigned char *in, unsigned int ilen);
@@ -17,6 +17,7 @@ static COMP_METHOD rle_method={
        rle_compress_block,
        rle_expand_block,
        NULL,
+       NULL,
        };
 
 COMP_METHOD *COMP_rle(void)