summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>2014-07-28 21:17:12 +0800
committerDavid Howells <dhowells@redhat.com>2014-07-28 14:55:54 +0100
commit63d2551ea7e2c34b533f2b6b0646cc825d9ee509 (patch)
tree56ac90e6e702dcb0eaa6a3d92876a9e776143f7c /crypto
parentb64cc5fb85f38ae7ca3c67a8fea9ad8c0d068bfa (diff)
downloadlinux-0-day-63d2551ea7e2c34b533f2b6b0646cc825d9ee509.tar.gz
linux-0-day-63d2551ea7e2c34b533f2b6b0646cc825d9ee509.tar.xz
PKCS#7: fix sparse non static symbol warning
Fixes the following sparse warnings: crypto/asymmetric_keys/pkcs7_key_type.c:73:17: warning: symbol 'key_type_pkcs7' was not declared. Should it be static? Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/asymmetric_keys/pkcs7_key_type.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/asymmetric_keys/pkcs7_key_type.c b/crypto/asymmetric_keys/pkcs7_key_type.c
index 197ecdc0a5a1b..3de5fb011de0b 100644
--- a/crypto/asymmetric_keys/pkcs7_key_type.c
+++ b/crypto/asymmetric_keys/pkcs7_key_type.c
@@ -70,7 +70,7 @@ error:
* user defined keys take an arbitrary string as the description and an
* arbitrary blob of data as the payload
*/
-struct key_type key_type_pkcs7 = {
+static struct key_type key_type_pkcs7 = {
.name = "pkcs7_test",
.def_lookup_type = KEYRING_SEARCH_LOOKUP_DIRECT,
.preparse = pkcs7_preparse,