make local function static
authorNils Larsch <nils@openssl.org>
Thu, 20 Apr 2006 09:53:49 +0000 (09:53 +0000)
committerNils Larsch <nils@openssl.org>
Thu, 20 Apr 2006 09:53:49 +0000 (09:53 +0000)
crypto/ec/ec_ameth.c

index e4b8aa68bda73e6a5f0c0c47c5b0681e7657f5a0..12b85b6fdef7c6eaec5f6947f3828d2415fc49d8 100644 (file)
@@ -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);