diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2010-07-12 10:00:41 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2010-07-12 12:59:56 +0200 |
commit | 8d2faf007636a936a5346426f6fe5c251a1255bb (patch) | |
tree | 9406a437cd939a12c6b0f7eec794d6406841319e | |
parent | f17e200018dcf305f48a975082f10ac840dd77f3 (diff) | |
download | cryptodev-linux-8d2faf007636a936a5346426f6fe5c251a1255bb.tar.gz cryptodev-linux-8d2faf007636a936a5346426f6fe5c251a1255bb.tar.xz cryptodev-linux-8d2faf007636a936a5346426f6fe5c251a1255bb.zip |
Allow import and export of keys.
-rw-r--r-- | ncr-pk.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -165,7 +165,7 @@ int ncr_pk_unpack( struct key_item_st * key, const void * packed, size_t packed_ { int cret; - if (key == NULL || packed == NULL || packed_size == NULL) { + if (key == NULL || packed == NULL) { err(); return -EINVAL; } |