framework-pkcs15init.c: Add missing initializers.

git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@4962 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
andre 2010-12-17 16:30:12 +00:00
parent 7f32e7a079
commit 82824402f4
1 changed files with 13 additions and 3 deletions

View File

@ -177,14 +177,24 @@ struct sc_pkcs11_framework_ops framework_pkcs15init = {
NULL, /* init_pin */
NULL, /* create_object */
NULL, /* gen_keypair */
NULL, /* get_random */
NULL /* get_random */
};
#else /* ifdef USE_PKCS15_INIT */
struct sc_pkcs11_framework_ops framework_pkcs15init = {
NULL,
NULL,
NULL, /* bind */
NULL, /* unbind */
NULL, /* create_tokens */
NULL, /* release_tokens */
NULL, /* login */
NULL, /* logout */
NULL, /* change_pin */
NULL, /* inti_token */
NULL, /* init_pin */
NULL, /* create_object */
NULL, /* gen_keypair */
NULL /* get_random */
};
#endif