OpenSSL CVS Repository
http://cvs.openssl.org/
____________________________________________________________
________________
Server: cvs.openssl.org Name: Nils
Larsch
Root: /v/openssl/cvs Email: nils openssl.org
Module: openssl Date:
20-Apr-2006 11:53:49
Branch: HEAD Handle:
2006042010534900
Modified files:
openssl/crypto/ec ec_ameth.c
Log:
make local function static
Summary:
Revision Changes Path
1.12 +2 -2 openssl/crypto/ec/ec_ameth.c
____________________________________________________________
________________
patch -p0 <<' .'
Index: openssl/crypto/ec/ec_ameth.c
============================================================
================
$ cvs diff -u -r1.11 -r1.12 ec_ameth.c
--- openssl/crypto/ec/ec_ameth.c 17 Apr 2006 17:12:22
-0000 1.11
+++ openssl/crypto/ec/ec_ameth.c 20 Apr 2006 09:53:49
-0000 1.12
 -394,7 +394,7 
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 
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);
 .
____________________________________________________________
__________
OpenSSL Project http://www.openssl.org
CVS Repository Commit List
openssl-cvs openssl.org
Automated List Manager
majordomo openssl.org
|