diff options
author | Tobias Brunner <tobias@strongswan.org> | 2011-05-10 15:40:46 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2011-05-10 15:40:46 +0200 |
commit | 70f918ec1d85462e3d8dc85bda87723f3f10d682 (patch) | |
tree | 8e9451da1d53d8c82f5cdc03b3515442ec96545b /src | |
parent | 59965aaf96005aafd8cfe49e73139513d99cfdfd (diff) | |
download | strongswan-70f918ec1d85462e3d8dc85bda87723f3f10d682.tar.bz2 strongswan-70f918ec1d85462e3d8dc85bda87723f3f10d682.tar.xz |
chunk_clear not clear_chunk.
Diffstat (limited to 'src')
-rw-r--r-- | src/libstrongswan/plugins/openssl/openssl_crypter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstrongswan/plugins/openssl/openssl_crypter.c b/src/libstrongswan/plugins/openssl/openssl_crypter.c index 1d322d43d..cd9a3bd4a 100644 --- a/src/libstrongswan/plugins/openssl/openssl_crypter.c +++ b/src/libstrongswan/plugins/openssl/openssl_crypter.c @@ -152,7 +152,7 @@ METHOD(crypter_t, set_key, void, METHOD(crypter_t, destroy, void, private_openssl_crypter_t *this) { - clear_chunk(&this->key); + chunk_clear(&this->key); free(this); } |