diff options
author | 2019-04-14 07:35:18 +0000 | |
---|---|---|
committer | 2019-04-14 07:35:18 +0000 | |
commit | 3192702c14e9108020c07249278ebcf9c4fa3f1d (patch) | |
tree | 82a97bc64ac53afe5dcc0b4782d0fecf984f4f94 /lib/libcrypto/x509v3 | |
parent | don't take splnet when running the network stack (diff) | |
download | wireguard-openbsd-3192702c14e9108020c07249278ebcf9c4fa3f1d.tar.xz wireguard-openbsd-3192702c14e9108020c07249278ebcf9c4fa3f1d.zip |
Fix previous: I forgot to rename the bn_to_string() prototype.
Diffstat (limited to 'lib/libcrypto/x509v3')
-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, |