summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/asn1/a_meth.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/asn1/a_meth.c')
-rw-r--r--src/lib/libcrypto/asn1/a_meth.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/asn1/a_meth.c b/src/lib/libcrypto/asn1/a_meth.c
index 513625c305..63158e9cab 100644
--- a/src/lib/libcrypto/asn1/a_meth.c
+++ b/src/lib/libcrypto/asn1/a_meth.c
@@ -58,8 +58,8 @@
58 58
59#include <stdio.h> 59#include <stdio.h>
60#include "cryptlib.h" 60#include "cryptlib.h"
61#include "buffer.h" 61#include <openssl/buffer.h>
62#include "x509.h" 62#include <openssl/asn1.h>
63 63
64static ASN1_METHOD ia5string_meth={ 64static ASN1_METHOD ia5string_meth={
65 (int (*)()) i2d_ASN1_IA5STRING, 65 (int (*)()) i2d_ASN1_IA5STRING,
@@ -73,12 +73,12 @@ static ASN1_METHOD bit_string_meth={
73 (char *(*)()) ASN1_STRING_new, 73 (char *(*)()) ASN1_STRING_new,
74 (void (*)()) ASN1_STRING_free}; 74 (void (*)()) ASN1_STRING_free};
75 75
76ASN1_METHOD *ASN1_IA5STRING_asn1_meth() 76ASN1_METHOD *ASN1_IA5STRING_asn1_meth(void)
77 { 77 {
78 return(&ia5string_meth); 78 return(&ia5string_meth);
79 } 79 }
80 80
81ASN1_METHOD *ASN1_BIT_STRING_asn1_meth() 81ASN1_METHOD *ASN1_BIT_STRING_asn1_meth(void)
82 { 82 {
83 return(&bit_string_meth); 83 return(&bit_string_meth);
84 } 84 }