diff options
author | Daniel Stenberg <daniel@haxx.se> | 2015-11-13 16:15:26 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-11-13 16:15:26 +0100 |
commit | 64e959ffe37c436503f9fed1ce2d6ee6ae50bd9a (patch) | |
tree | f86e6fba6c3250aea26429bed2f5c80c97494aa0 /lib/vtls | |
parent | 86e21973376320b243b180679ff9c439b92e7cd0 (diff) |
cleanup: general removal of TODO (and similar) comments
They tend to never get updated anyway so they're frequently inaccurate
and we never go back to revisit them anyway. We document issues to work
on properly in KNOWN_BUGS and TODO instead.
Diffstat (limited to 'lib/vtls')
-rw-r--r-- | lib/vtls/gtls.c | 6 | ||||
-rw-r--r-- | lib/vtls/openssl.c | 5 |
2 files changed, 0 insertions, 11 deletions
diff --git a/lib/vtls/gtls.c b/lib/vtls/gtls.c index 1c1cc2f7b..093cd4e98 100644 --- a/lib/vtls/gtls.c +++ b/lib/vtls/gtls.c @@ -1541,12 +1541,6 @@ static int Curl_gtls_seed(struct SessionHandle *data) if(!ssl_seeded || data->set.str[STRING_SSL_RANDOM_FILE] || data->set.str[STRING_SSL_EGDSOCKET]) { - - /* TODO: to a good job seeding the RNG - This may involve the gcry_control function and these options: - GCRYCTL_SET_RANDOM_SEED_FILE - GCRYCTL_SET_RNDEGD_SOCKET - */ ssl_seeded = TRUE; } return 0; diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index 1cf29764a..ac4bd19be 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -2382,11 +2382,6 @@ static CURLcode get_cert_chain(struct connectdata *conn, print_pubkey_BN(dh, priv_key, i); print_pubkey_BN(dh, pub_key, i); break; -#if 0 - case EVP_PKEY_EC: /* symbol not present in OpenSSL 0.9.6 */ - /* left TODO */ - break; -#endif } EVP_PKEY_free(pubkey); } |