KEYS: Fix missing statics

Fix missing statics (found by checker).

Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: Vivek Goyal <vgoyal@redhat.com>
This commit is contained in:
David Howells 2014-09-16 17:07:07 +01:00
parent ac60ab4b49
commit 8da79b6439
1 changed files with 2 additions and 2 deletions

View File

@ -44,12 +44,12 @@ struct key_type key_type_request_key_auth = {
.read = request_key_auth_read, .read = request_key_auth_read,
}; };
int request_key_auth_preparse(struct key_preparsed_payload *prep) static int request_key_auth_preparse(struct key_preparsed_payload *prep)
{ {
return 0; return 0;
} }
void request_key_auth_free_preparse(struct key_preparsed_payload *prep) static void request_key_auth_free_preparse(struct key_preparsed_payload *prep)
{ {
} }