diff options
author | Martin Willi <martin@strongswan.org> | 2005-12-02 12:38:55 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2005-12-02 12:38:55 +0000 |
commit | ccf783d29dba58e8e6aef211b8d050670b1d55ac (patch) | |
tree | a252d58ead4e682c0bb915dc09bc12c9f21565d6 /Source/charon/sa/states/responder_init.c | |
parent | ae3012a0ea0e06e29212f1967b5b71e90460fb43 (diff) | |
download | strongswan-ccf783d29dba58e8e6aef211b8d050670b1d55ac.tar.bz2 strongswan-ccf783d29dba58e8e6aef211b8d050670b1d55ac.tar.xz |
- state ike_sa_init_responded implemented (has some memleaks)
Diffstat (limited to 'Source/charon/sa/states/responder_init.c')
-rw-r--r-- | Source/charon/sa/states/responder_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/charon/sa/states/responder_init.c b/Source/charon/sa/states/responder_init.c index ee9584e2c..3c03adf41 100644 --- a/Source/charon/sa/states/responder_init.c +++ b/Source/charon/sa/states/responder_init.c @@ -361,7 +361,7 @@ static status_t process_message(private_responder_init_t *this, message_t *messa /* state can now be changed */ this->logger->log(this->logger, CONTROL|MOST, "Create next state object"); - next_state = ike_sa_init_responded_create(this->ike_sa, shared_secret, this->received_nonce, this->sent_nonce); + next_state = ike_sa_init_responded_create(this->ike_sa); /* last message can now be set */ status = this->ike_sa->set_last_responded_message(this->ike_sa, response); |