aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/asn1/tasn_new.c
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2006-02-15 20:20:20 +0000
committerNils Larsch <nils@openssl.org>2006-02-15 20:20:20 +0000
commitb3e72fc37f6ae850bbac4bbebb8e47f84c5b134d (patch)
tree125636fdf8c8a50d981d2e6c53a31b19bb56aec7 /crypto/asn1/tasn_new.c
parent90076b96df5bf683bc6b759fe89891ff11bd85e9 (diff)
downloadopenssl-b3e72fc37f6ae850bbac4bbebb8e47f84c5b134d.tar.gz
make some internal functions static; patch supplied by Kurt Roeckx
Diffstat (limited to 'crypto/asn1/tasn_new.c')
-rw-r--r--crypto/asn1/tasn_new.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/asn1/tasn_new.c b/crypto/asn1/tasn_new.c
index 4b046e5e74..083f88576a 100644
--- a/crypto/asn1/tasn_new.c
+++ b/crypto/asn1/tasn_new.c
@@ -68,7 +68,7 @@ static int asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
int combine);
static void asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
static void asn1_template_clear(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
-void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
+static void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
ASN1_VALUE *ASN1_item_new(const ASN1_ITEM *it)
{
@@ -373,7 +373,7 @@ int ASN1_primitive_new(ASN1_VALUE **pval, const ASN1_ITEM *it)
return 0;
}
-void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it)
+static void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it)
{
int utype;
if (it && it->funcs)