diff options
author | Tobias Brunner <tobias@strongswan.org> | 2011-10-25 09:54:17 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2011-10-31 18:45:35 +0100 |
commit | df241121fd914a4c545857fa9b17fdfdd7274c02 (patch) | |
tree | 1d7fb01c7cf52b2638294c1d3f51c3a4e5b689f7 | |
parent | 1bb522bc34af72091613650bc4cae75adcfc1c1d (diff) | |
download | strongswan-df241121fd914a4c545857fa9b17fdfdd7274c02.tar.bz2 strongswan-df241121fd914a4c545857fa9b17fdfdd7274c02.tar.xz |
pkcs11: Error message fixed.
-rw-r--r-- | src/libstrongswan/plugins/pkcs11/pkcs11_library.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstrongswan/plugins/pkcs11/pkcs11_library.c b/src/libstrongswan/plugins/pkcs11/pkcs11_library.c index 1f1628148..d819ddc52 100644 --- a/src/libstrongswan/plugins/pkcs11/pkcs11_library.c +++ b/src/libstrongswan/plugins/pkcs11/pkcs11_library.c @@ -552,7 +552,7 @@ static bool get_attributes(object_enumerator_t *this, CK_OBJECT_HANDLE object) if (rv != CKR_OK) { free_attrs(this); - DBG1(DBG_CFG, "C_GetAttributeValue(NULL) error: %N", ck_rv_names, rv); + DBG1(DBG_CFG, "C_GetAttributeValue() error: %N", ck_rv_names, rv); return FALSE; } return TRUE; |