diff options
author | 2015-02-14 15:21:49 +0000 | |
---|---|---|
committer | 2015-02-14 15:21:49 +0000 | |
commit | cd582f0acb1ea4448ed6b609a5e4cb09bf937ae7 (patch) | |
tree | d6854b7b9bd247dbcfaa499886d18acc327c6312 /lib/libssl/src | |
parent | Memory leak in `should not happen' condition; Coverity CID 78889. (diff) | |
download | wireguard-openbsd-cd582f0acb1ea4448ed6b609a5e4cb09bf937ae7.tar.xz wireguard-openbsd-cd582f0acb1ea4448ed6b609a5e4cb09bf937ae7.zip |
Make asn1_ex_i2c() static. ok jsing@
Diffstat (limited to 'lib/libssl/src')
-rw-r--r-- | lib/libssl/src/crypto/asn1/tasn_enc.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libssl/src/crypto/asn1/tasn_enc.c b/lib/libssl/src/crypto/asn1/tasn_enc.c index f7209dc4ebe..67d774a9c10 100644 --- a/lib/libssl/src/crypto/asn1/tasn_enc.c +++ b/lib/libssl/src/crypto/asn1/tasn_enc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tasn_enc.c,v 1.14 2014/07/11 08:44:47 jsing Exp $ */ +/* $OpenBSD: tasn_enc.c,v 1.15 2015/02/14 15:21:49 miod Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2000. */ @@ -71,6 +71,8 @@ static int asn1_template_ex_i2d(ASN1_VALUE **pval, unsigned char **out, const ASN1_TEMPLATE *tt, int tag, int aclass); static int asn1_item_flags_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it, int flags); +static int asn1_ex_i2c(ASN1_VALUE **pval, unsigned char *cout, int *putype, + const ASN1_ITEM *it); /* Top level i2d equivalents: the 'ndef' variant instructs the encoder * to use indefinite length constructed encoding, where appropriate @@ -543,7 +545,7 @@ asn1_i2d_ex_primitive(ASN1_VALUE **pval, unsigned char **out, /* Produce content octets from a structure */ -int +static int asn1_ex_i2c(ASN1_VALUE **pval, unsigned char *cout, int *putype, const ASN1_ITEM *it) { |