diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2011-04-06 17:33:01 +0200 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2011-04-06 17:33:01 +0200 |
commit | 0ef974412358385e0cffcf5acf612474314d2e32 (patch) | |
tree | 534e67cee758a30c23f6f88027446a0800385cfc /src/libcharon/plugins/eap_peap/eap_peap_server.c | |
parent | 915aa1f19863e6d23edcb1b9b8eb612c70ad3f8a (diff) | |
download | strongswan-0ef974412358385e0cffcf5acf612474314d2e32.tar.bz2 strongswan-0ef974412358385e0cffcf5acf612474314d2e32.tar.xz |
no EAP identifier offset required in build() function
Diffstat (limited to 'src/libcharon/plugins/eap_peap/eap_peap_server.c')
-rw-r--r-- | src/libcharon/plugins/eap_peap/eap_peap_server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcharon/plugins/eap_peap/eap_peap_server.c b/src/libcharon/plugins/eap_peap/eap_peap_server.c index a31633276..4f0576fb5 100644 --- a/src/libcharon/plugins/eap_peap/eap_peap_server.c +++ b/src/libcharon/plugins/eap_peap/eap_peap_server.c @@ -350,7 +350,7 @@ METHOD(tls_application_t, build, status_t, /* synchronize EAP message identifiers of inner protocol with outer */ this->ph2_method->set_identifier(this->ph2_method, - this->ph1_method->get_identifier(this->ph1_method) + 1); + this->ph1_method->get_identifier(this->ph1_method)); this->ph2_method->initiate(this->ph2_method, &this->out); this->start_phase2 = FALSE; |