aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2010-05-04 17:00:43 +0200
committerTobias Brunner <tobias@strongswan.org>2010-05-04 18:28:28 +0200
commit6b57f5edffd2354853666eec297de3704e75f066 (patch)
tree5af7d91e1985e4fe28b1dde548f962285a7712b8 /src
parent0465d2c0b768873bae00b96c1cce1b0954b746b3 (diff)
downloadstrongswan-6b57f5edffd2354853666eec297de3704e75f066.tar.bz2
strongswan-6b57f5edffd2354853666eec297de3704e75f066.tar.xz
Compiler warning fixed.
Diffstat (limited to 'src')
-rw-r--r--src/libcharon/plugins/eap_mschapv2/eap_mschapv2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcharon/plugins/eap_mschapv2/eap_mschapv2.c b/src/libcharon/plugins/eap_mschapv2/eap_mschapv2.c
index c1ccf72eb..5228c6c73 100644
--- a/src/libcharon/plugins/eap_mschapv2/eap_mschapv2.c
+++ b/src/libcharon/plugins/eap_mschapv2/eap_mschapv2.c
@@ -820,7 +820,7 @@ static status_t process_peer_failure(private_eap_mschapv2_t *this,
eap_mschapv2_header_t *eap;
chunk_t data;
char *message, *token, *msg = NULL;
- int message_len, error, retryable;
+ int message_len, error = 0, retryable;
chunk_t challenge = chunk_empty;
data = in->get_data(in);