summaryrefslogtreecommitdiff
path: root/gcr
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2009-08-22 20:07:39 +0000
committerStef Walter <stef@memberwebs.com>2009-08-22 20:15:47 +0000
commitb1c54fe9af3012bc6d0964f3d0a1f79b7455c3cf (patch)
treedcf08dd0490ca45d25782d44678a27ac59d2ad50 /gcr
parented3e9624db1a2aaf7137b18e4689661038da37e0 (diff)
downloadgcr-b1c54fe9af3012bc6d0964f3d0a1f79b7455c3cf.tar.gz
[gp11] CK_NOTIFY accepted when opening a session.
The gp11_slot_open_session_full() and gp11_slot_open_session_async() functions now accept CK_NOTIFY and app data parameters.
Diffstat (limited to 'gcr')
-rw-r--r--gcr/gcr-importer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcr/gcr-importer.c b/gcr/gcr-importer.c
index 8a04889..15053cd 100644
--- a/gcr/gcr-importer.c
+++ b/gcr/gcr-importer.c
@@ -258,10 +258,10 @@ state_open_session (GcrImporter *self, gboolean async)
} else {
if (async) {
- gp11_slot_open_session_async (self->pv->slot, CKF_RW_SESSION,
+ gp11_slot_open_session_async (self->pv->slot, CKF_RW_SESSION, NULL, NULL,
self->pv->cancel, on_open_session, self);
} else {
- session = gp11_slot_open_session_full (self->pv->slot, CKF_RW_SESSION,
+ session = gp11_slot_open_session_full (self->pv->slot, CKF_RW_SESSION, NULL, NULL,
self->pv->cancel, &error);
complete_open_session (self, session, error);
}