summaryrefslogtreecommitdiffstats
path: root/apps/include/apps.h
diff options
context:
space:
mode:
authorDr. David von Oheimb <David.von.Oheimb@siemens.com>2021-08-17 19:57:08 +0200
committerDr. David von Oheimb <dev@ddvo.net>2021-08-25 07:07:21 +0200
commit32f7be2ab72ee22e98a2254709cb6128492b207a (patch)
tree57e349dc24c591ebed1596b64a42ec29ecfbfc14 /apps/include/apps.h
parentfdd436436d337f54e1e9d57b46b9489f7a3d042d (diff)
APPS: Fix result type of dump_cert_text() and behavior of print_name() on out==NULL
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/16344)
Diffstat (limited to 'apps/include/apps.h')
-rw-r--r--apps/include/apps.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/include/apps.h b/apps/include/apps.h
index bc8c6359f3..9d5db16600 100644
--- a/apps/include/apps.h
+++ b/apps/include/apps.h
@@ -94,7 +94,7 @@ typedef struct args_st {
int wrap_password_callback(char *buf, int bufsiz, int verify, void *cb_data);
int chopup_args(ARGS *arg, char *buf);
-int dump_cert_text(BIO *out, X509 *x);
+void dump_cert_text(BIO *out, X509 *x);
void print_name(BIO *out, const char *title, const X509_NAME *nm);
void print_bignum_var(BIO *, const BIGNUM *, const char*,
int, unsigned char *);