Fix warning: missing initializer

git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@4156 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
ludovic.rousseau 2010-03-28 11:37:13 +00:00
parent 5ae0d01918
commit ecae106253
14 changed files with 30 additions and 15 deletions

View File

@ -824,7 +824,8 @@ static struct sc_pkcs15init_operations sc_pkcs15init_asepcos_operations = {
asepcos_generate_key,
NULL, NULL, /* encode private/public key */
NULL, /* finalize_card */
NULL /* delete_object */
NULL, /* delete_object */
NULL, NULL, NULL, NULL /* pkcs15init emulation */
};
struct sc_pkcs15init_operations * sc_pkcs15init_get_asepcos_ops(void)

View File

@ -790,7 +790,8 @@ static struct sc_pkcs15init_operations sc_pkcs15init_cardos_operations = {
cardos_generate_key,
NULL, NULL, /* encode private/public key */
NULL, /* finalize_card */
NULL /* delete_object */
NULL, /* delete_object */
NULL, NULL, NULL, NULL /* pkcs15init emulation */
};
struct sc_pkcs15init_operations *

View File

@ -904,7 +904,8 @@ static struct sc_pkcs15init_operations sc_pkcs15init_cryptoflex_operations = {
cryptoflex_encode_private_key,
cryptoflex_encode_public_key,
NULL, /* finalize_card */
NULL /* delete_object */
NULL, /* delete_object */
NULL, NULL, NULL, NULL /* pkcs15init emulation */
};
static struct sc_pkcs15init_operations sc_pkcs15init_cyberflex_operations = {
@ -921,7 +922,8 @@ static struct sc_pkcs15init_operations sc_pkcs15init_cyberflex_operations = {
cyberflex_encode_private_key,
cyberflex_encode_public_key,
NULL, /* finalize_card */
NULL /* delete_object */
NULL, /* delete_object */
NULL, NULL, NULL, NULL /* pkcs15init emulation */
};
struct sc_pkcs15init_operations *

View File

@ -432,7 +432,8 @@ static struct sc_pkcs15init_operations sc_pkcs15init_entersafe_operations = {
entersafe_generate_key,
NULL, NULL, /* encode private/public key */
NULL, /* finalize */
NULL /* delete_object */
NULL, /* delete_object */
NULL, NULL, NULL, NULL /* pkcs15init emulation */
};
struct sc_pkcs15init_operations *sc_pkcs15init_get_entersafe_ops(void)

View File

@ -1134,7 +1134,8 @@ static struct sc_pkcs15init_operations sc_pkcs15init_gpk_operations = {
gpk_generate_key,
NULL, NULL, /* encode private/public key */
NULL, /* finalize_card */
NULL /* delete_object */
NULL, /* delete_object */
NULL, NULL, NULL, NULL /* pkcs15init emulation */
};
struct sc_pkcs15init_operations *sc_pkcs15init_get_gpk_ops(void)

View File

@ -679,7 +679,8 @@ static struct sc_pkcs15init_operations sc_pkcs15init_incrypto34_operations = {
incrypto34_generate_key,
NULL, NULL, /* encode private/public key */
NULL, /* finalize_card */
NULL /* delete_object */
NULL, /* delete_object */
NULL, NULL, NULL, NULL /* pkcs15init emulation */
};
struct sc_pkcs15init_operations *
sc_pkcs15init_get_incrypto34_ops(void)

View File

@ -362,7 +362,8 @@ static struct sc_pkcs15init_operations sc_pkcs15init_jcop_operations = {
jcop_generate_key,
NULL, NULL, /* encode private/public key */
NULL, /* finalize_card */
NULL /* delete_object */
NULL, /* delete_object */
NULL, NULL, NULL, NULL /* pkcs15init emulation */
};
struct sc_pkcs15init_operations *sc_pkcs15init_get_jcop_ops(void)

View File

@ -274,7 +274,8 @@ static struct sc_pkcs15init_operations sc_pkcs15init_miocos_operations = {
NULL, /* generate_key */
NULL, NULL, /* encode private/public key */
NULL, /* finalize_card */
NULL /* delete_object */
NULL, /* delete_object */
NULL, NULL, NULL, NULL /* pkcs15init emulation */
};
struct sc_pkcs15init_operations *sc_pkcs15init_get_miocos_ops(void)

View File

@ -307,7 +307,8 @@ static struct sc_pkcs15init_operations sc_pkcs15init_muscle_operations = {
muscle_generate_key, /* generate_key */
NULL, NULL, /* encode private/public key */
NULL, /* finalize_card */
NULL /* delete_object */
NULL, /* delete_object */
NULL, NULL, NULL, NULL /* pkcs15init emulation */
};
struct sc_pkcs15init_operations *

View File

@ -710,7 +710,8 @@ static struct sc_pkcs15init_operations sc_pkcs15init_myeid_operations = {
myeid_encode_private_key,
myeid_encode_public_key,
NULL, /* finalize_card */
myeid_delete_object /* delete_object */
myeid_delete_object, /* delete_object */
NULL, NULL, NULL, NULL /* pkcs15init emulation */
};
struct sc_pkcs15init_operations *sc_pkcs15init_get_myeid_ops(void)

View File

@ -613,7 +613,8 @@ static struct sc_pkcs15init_operations sc_pkcs15init_rtecp_operations = {
NULL, /* encode_private_key */
NULL, /* encode_public_key */
rtecp_finalize, /* finalize_card */
NULL /* delete_object */
NULL, /* delete_object */
NULL, NULL, NULL, NULL /* pkcs15init emulation */
};
struct sc_pkcs15init_operations * sc_pkcs15init_get_rtecp_ops(void)

View File

@ -505,7 +505,8 @@ static struct sc_pkcs15init_operations sc_pkcs15init_rutoken_operations = {
NULL, /* encode_private_key */
NULL, /* encode_public_key */
NULL, /* finalize_card */
NULL /* delete_object */
NULL, /* delete_object */
NULL, NULL, NULL, NULL /* pkcs15init emulation */
};
struct sc_pkcs15init_operations* sc_pkcs15init_get_rutoken_ops(void)

View File

@ -925,7 +925,8 @@ static struct sc_pkcs15init_operations sc_pkcs15init_starcos_operations = {
starcos_generate_key,
NULL, NULL, /* encode private/public key */
starcos_finalize_card,
NULL /* delete_object */
NULL, /* delete_object */
NULL, NULL, NULL, NULL /* pkcs15init emulation */
};
struct sc_pkcs15init_operations *sc_pkcs15init_get_starcos_ops(void)

View File

@ -337,7 +337,8 @@ static struct sc_pkcs15init_operations sc_pkcs15init_westcos_operations = {
westcos_pkcs15init_generate_key, /* generate_key */
NULL, NULL, /* encode private/public key */
westcos_pkcs15init_finalize_card, /* finalize_card */
NULL /* delete_object */
NULL, /* delete_object */
NULL, NULL, NULL, NULL /* pkcs15init emulation */
};
struct sc_pkcs15init_operations* sc_pkcs15init_get_westcos_ops(void)