summaryrefslogtreecommitdiff
path: root/lib/gnutls_handshake.c
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2011-12-10 11:18:46 +0100
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2011-12-10 11:21:58 +0100
commit076851da27bc5590a9156505a2fcd54a344a4b9a (patch)
tree7a1af8fff78eee261396296aff179c845ee3931b /lib/gnutls_handshake.c
parentae3f137e0b619217236f5899c2dd9668a3a73898 (diff)
downloadgnutls-076851da27bc5590a9156505a2fcd54a344a4b9a.tar.gz
Optimized ciphersuite sorting.
Diffstat (limited to 'lib/gnutls_handshake.c')
-rw-r--r--lib/gnutls_handshake.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gnutls_handshake.c b/lib/gnutls_handshake.c
index 8363bf140e..6ab5491b98 100644
--- a/lib/gnutls_handshake.c
+++ b/lib/gnutls_handshake.c
@@ -1613,7 +1613,7 @@ _gnutls_copy_ciphersuites (gnutls_session_t session,
int cipher_suites_size;
size_t init_length = cdata->length;
- ret = _gnutls_supported_ciphersuites_sorted (session, cipher_suites, sizeof(cipher_suites)-2);
+ ret = _gnutls_supported_ciphersuites (session, cipher_suites, sizeof(cipher_suites)-2);
if (ret < 0)
return gnutls_assert_val(ret);