aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2007-09-12 07:54:56 +0000
committerAndreas Steffen <andreas.steffen@strongswan.org>2007-09-12 07:54:56 +0000
commit794d2526b4f033d922bc0fc85ad0531d98ee3e1f (patch)
tree0bc7c36a617424581745e58c6e6d0d6f91132757 /src
parent38ad6a7b352503ec35f318e15abb39f8d57c3e33 (diff)
downloadstrongswan-794d2526b4f033d922bc0fc85ad0531d98ee3e1f.tar.bz2
strongswan-794d2526b4f033d922bc0fc85ad0531d98ee3e1f.tar.xz
removed unused chunk variable
Diffstat (limited to 'src')
-rw-r--r--src/charon/sa/authenticators/rsa_authenticator.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/charon/sa/authenticators/rsa_authenticator.c b/src/charon/sa/authenticators/rsa_authenticator.c
index 4f4965009..ba0fad1e3 100644
--- a/src/charon/sa/authenticators/rsa_authenticator.c
+++ b/src/charon/sa/authenticators/rsa_authenticator.c
@@ -93,9 +93,7 @@ static status_t verify(private_rsa_authenticator_t *this, chunk_t ike_sa_init,
static status_t build(private_rsa_authenticator_t *this, chunk_t ike_sa_init,
chunk_t other_nonce, auth_payload_t **auth_payload)
{
- chunk_t chunk;
- chunk_t octets;
- chunk_t auth_data;
+ chunk_t octets, auth_data;
status_t status;
rsa_public_key_t *my_pubkey;
identification_t *my_id;