summaryrefslogtreecommitdiffstats
path: root/crypto/ec
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2006-04-20 09:53:49 +0000
committerNils Larsch <nils@openssl.org>2006-04-20 09:53:49 +0000
commit930b0c4b8a4a1acab0a9af8808883391f7ddc280 (patch)
treeac14b484000f18f38f51c00fe949d4ff22c959e1 /crypto/ec
parent3d153f79859b1b5ae02b7132a49ebe16c3c5208c (diff)
make local function static
Diffstat (limited to 'crypto/ec')
-rw-r--r--crypto/ec/ec_ameth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/ec/ec_ameth.c b/crypto/ec/ec_ameth.c
index e4b8aa68bd..12b85b6fde 100644
--- a/crypto/ec/ec_ameth.c
+++ b/crypto/ec/ec_ameth.c
@@ -394,7 +394,7 @@ static int ec_missing_parameters(const EVP_PKEY *pkey)
return 0;
}
-int ec_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from)
+static int ec_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from)
{
EC_GROUP *group = EC_GROUP_dup(EC_KEY_get0_group(from->pkey.ec));
if (group == NULL)
@@ -405,7 +405,7 @@ int ec_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from)
return 1;
}
-int ec_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b)
+static int ec_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b)
{
const EC_GROUP *group_a = EC_KEY_get0_group(a->pkey.ec),
*group_b = EC_KEY_get0_group(b->pkey.ec);