- reverted previous patch

git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@1000 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
okir 2003-04-11 14:48:54 +00:00
parent 99dc52d875
commit dc269cea3e
4 changed files with 21 additions and 20 deletions

View File

@ -388,9 +388,9 @@ err:
}
struct sc_pkcs15init_operations sc_pkcs15init_cflex_operations = {
.erase_card = cflex_erase_card,
.init_app = cflex_init_app,
.new_pin = cflex_new_pin,
.new_key = cflex_new_key,
.new_file = cflex_new_file,
cflex_erase_card,
cflex_init_app,
cflex_new_pin,
cflex_new_key,
cflex_new_file,
};

View File

@ -690,10 +690,10 @@ error(struct sc_profile *profile, const char *fmt, ...)
}
struct sc_pkcs15init_operations sc_pkcs15init_etoken_operations = {
.erase_card = etoken_erase,
.init_app = etoken_init_app,
.new_pin = etoken_new_pin,
.new_key = etoken_new_key,
.new_file = etoken_new_file,
.generate_key = etoken_generate_key
etoken_erase,
etoken_init_app,
etoken_new_pin,
etoken_new_key,
etoken_new_file,
etoken_generate_key
};

View File

@ -978,9 +978,9 @@ debug(struct sc_profile *profile, const char *fmt, ...)
}
struct sc_pkcs15init_operations sc_pkcs15init_gpk_operations = {
.erase_card = gpk_erase_card,
.init_app = gpk_init_app,
.new_pin = gpk_new_pin,
.new_key = gpk_new_key,
.new_file = gpk_new_file,
gpk_erase_card,
gpk_init_app,
gpk_new_pin,
gpk_new_key,
gpk_new_file,
};

View File

@ -199,8 +199,9 @@ miocos_new_key(struct sc_profile *profile, struct sc_card *card,
}
struct sc_pkcs15init_operations sc_pkcs15init_miocos_operations = {
.init_app = miocos_init_app,
.new_pin = miocos_new_pin,
.new_key = miocos_new_key,
.new_file = miocos_new_file,
NULL,
miocos_init_app,
miocos_new_pin,
miocos_new_key,
miocos_new_file,
};