- Ahem, decrease the version number a bit

- assuan_transact is now API compatible with the latest
  version of Assuan (newpg/assuan)


git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@309 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
aet 2002-03-13 12:42:11 +00:00
parent b3e7235e30
commit c418eb91af
1 changed files with 3 additions and 3 deletions

View File

@ -51,7 +51,7 @@ int ask_and_verify_pin_code(struct sc_pkcs15_card *p15card,
goto err;
}
sprintf(buf, "SETDESC Enter PIN [%s] for digital signing ", pin->label);
r = assuan_transact(ctx, buf, NULL, NULL, NULL, NULL);
r = assuan_transact(ctx, buf, NULL, NULL, NULL, NULL, NULL, NULL);
if (r) {
printf("SETDESC: %s\n", assuan_strerror(r));
goto err;
@ -60,13 +60,13 @@ int ask_and_verify_pin_code(struct sc_pkcs15_card *p15card,
while (1) {
if (errtext[0]) {
sprintf(buf, "SETERROR %s", errtext);
r = assuan_transact(ctx, buf, NULL, NULL, NULL, NULL);
r = assuan_transact(ctx, buf, NULL, NULL, NULL, NULL, NULL, NULL);
errtext[0] = 0;
}
parm.lines = 0;
parm.size = sizeof(buf);
parm.buffer = buf;
r = assuan_transact(ctx, "GETPIN", getpin_cb, &parm, NULL, NULL);
r = assuan_transact(ctx, "GETPIN", getpin_cb, &parm, NULL, NULL, NULL, NULL);
if (r == ASSUAN_Canceled) {
assuan_disconnect(ctx);
return -2;