diff options
Diffstat (limited to 'src/lib/libcrypto/asn1/a_strex.c')
-rw-r--r-- | src/lib/libcrypto/asn1/a_strex.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/lib/libcrypto/asn1/a_strex.c b/src/lib/libcrypto/asn1/a_strex.c index c0f0d7634d..a8b5595db9 100644 --- a/src/lib/libcrypto/asn1/a_strex.c +++ b/src/lib/libcrypto/asn1/a_strex.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: a_strex.c,v 1.26 2018/04/25 11:48:21 tb Exp $ */ | 1 | /* $OpenBSD: a_strex.c,v 1.27 2018/05/18 18:23:24 tb Exp $ */ |
2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
3 | * project 2000. | 3 | * project 2000. |
4 | */ | 4 | */ |
@@ -440,7 +440,7 @@ do_indent(char_io *io_ch, void *arg, int indent) | |||
440 | #define FN_WIDTH_SN 10 | 440 | #define FN_WIDTH_SN 10 |
441 | 441 | ||
442 | static int | 442 | static int |
443 | do_name_ex(char_io *io_ch, void *arg, X509_NAME *n, int indent, | 443 | do_name_ex(char_io *io_ch, void *arg, const X509_NAME *n, int indent, |
444 | unsigned long flags) | 444 | unsigned long flags) |
445 | { | 445 | { |
446 | int i, prev = -1, orflags, cnt; | 446 | int i, prev = -1, orflags, cnt; |
@@ -582,7 +582,8 @@ do_name_ex(char_io *io_ch, void *arg, X509_NAME *n, int indent, | |||
582 | /* Wrappers round the main functions */ | 582 | /* Wrappers round the main functions */ |
583 | 583 | ||
584 | int | 584 | int |
585 | X509_NAME_print_ex(BIO *out, X509_NAME *nm, int indent, unsigned long flags) | 585 | X509_NAME_print_ex(BIO *out, const X509_NAME *nm, int indent, |
586 | unsigned long flags) | ||
586 | { | 587 | { |
587 | if (flags == XN_FLAG_COMPAT) | 588 | if (flags == XN_FLAG_COMPAT) |
588 | return X509_NAME_print(out, nm, indent); | 589 | return X509_NAME_print(out, nm, indent); |
@@ -590,7 +591,8 @@ X509_NAME_print_ex(BIO *out, X509_NAME *nm, int indent, unsigned long flags) | |||
590 | } | 591 | } |
591 | 592 | ||
592 | int | 593 | int |
593 | X509_NAME_print_ex_fp(FILE *fp, X509_NAME *nm, int indent, unsigned long flags) | 594 | X509_NAME_print_ex_fp(FILE *fp, const X509_NAME *nm, int indent, |
595 | unsigned long flags) | ||
594 | { | 596 | { |
595 | if (flags == XN_FLAG_COMPAT) { | 597 | if (flags == XN_FLAG_COMPAT) { |
596 | BIO *btmp; | 598 | BIO *btmp; |