diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2019-04-14 07:35:19 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2019-04-14 07:35:19 +0000 |
commit | 37f79bcc39c89d49dd6eae8d7c69a63db8254822 (patch) | |
tree | cf36e546088e667fb3e5d127ec2f88d49fca4a29 /lib | |
parent | a2700b7f1384737960757583ee8b550cd022aec6 (diff) |
Fix previous: I forgot to rename the bn_to_string() prototype.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/x509v3/v3_utl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/x509v3/v3_utl.c b/lib/libcrypto/x509v3/v3_utl.c index 75f7662e7ef..6e967194b34 100644 --- a/lib/libcrypto/x509v3/v3_utl.c +++ b/lib/libcrypto/x509v3/v3_utl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: v3_utl.c,v 1.32 2019/04/13 18:42:23 tb Exp $ */ +/* $OpenBSD: v3_utl.c,v 1.33 2019/04/14 07:35:18 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project. */ @@ -66,7 +66,7 @@ #include <openssl/err.h> #include <openssl/x509v3.h> -char *bnstr(const BIGNUM *bn); +char *bn_to_string(const BIGNUM *bn); static char *strip_spaces(char *name); static int sk_strcmp(const char * const *a, const char * const *b); static STACK_OF(OPENSSL_STRING) *get_email(X509_NAME *name, |