aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMartin Willi <martin@revosec.ch>2010-08-20 14:57:14 +0200
committerMartin Willi <martin@revosec.ch>2010-08-20 15:09:08 +0200
commit6291fbedcb74e47a287d355dcc4c026f60e60fd3 (patch)
treea81a648b1f4674ea488ecea49c029583f41d97fc /src
parent906680029dc05606fa1b92221092f020f70b0b2f (diff)
downloadstrongswan-6291fbedcb74e47a287d355dcc4c026f60e60fd3.tar.bz2
strongswan-6291fbedcb74e47a287d355dcc4c026f60e60fd3.tar.xz
Fixed compiler warning
Diffstat (limited to 'src')
-rw-r--r--src/libcharon/plugins/eap_ttls/eap_ttls_server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcharon/plugins/eap_ttls/eap_ttls_server.c b/src/libcharon/plugins/eap_ttls/eap_ttls_server.c
index 94fd555eb..c4a18a434 100644
--- a/src/libcharon/plugins/eap_ttls/eap_ttls_server.c
+++ b/src/libcharon/plugins/eap_ttls/eap_ttls_server.c
@@ -72,7 +72,7 @@ METHOD(tls_application_t, process, status_t,
payload_t *payload;
eap_payload_t *in;
eap_code_t code;
- eap_type_t type, received_type;
+ eap_type_t type = EAP_NAK, received_type;
u_int32_t vendor, received_vendor;
status = this->avp->process(this->avp, reader, &data);