diff options
author | Martin Willi <martin@strongswan.org> | 2009-06-19 10:05:27 +0200 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2009-06-19 10:05:27 +0200 |
commit | aab814c793832b5a102aed5f4149f75433189693 (patch) | |
tree | c271ce7b042934acfe4fe328b2817a2adf30df12 | |
parent | f53b7e00c203f925009550ea414d6aebb8565bc7 (diff) | |
download | strongswan-aab814c793832b5a102aed5f4149f75433189693.tar.bz2 strongswan-aab814c793832b5a102aed5f4149f75433189693.tar.xz |
fixed compiler warning
-rw-r--r-- | scripts/pubkey_speed.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/pubkey_speed.c b/scripts/pubkey_speed.c index 8f1e7449c..86a4e105b 100644 --- a/scripts/pubkey_speed.c +++ b/scripts/pubkey_speed.c @@ -35,8 +35,8 @@ int main(int argc, char *argv[]) struct timespec timing; int round, rounds, read; char buf[8096], *pos = buf; - key_type_t type; - signature_scheme_t scheme; + key_type_t type = KEY_ANY; + signature_scheme_t scheme = SIGN_UNKNOWN; chunk_t keydata, *sigs, data = chunk_from_buf(data_buf); if (argc < 4) |