fix a typo in the new ciphersuite ordering code
authorBodo Möller <bodo@openssl.org>
Tue, 20 Feb 2007 13:25:36 +0000 (13:25 +0000)
committerBodo Möller <bodo@openssl.org>
Tue, 20 Feb 2007 13:25:36 +0000 (13:25 +0000)
ssl/ssl_ciph.c

index 787aec1e3110c21842c97d60c037a456d63be303..a9d11ca47481d72b28fb57c97255d80796a4343a 100644 (file)
@@ -1134,10 +1134,11 @@ STACK_OF(SSL_CIPHER) *ssl_create_cipher_list(const SSL_METHOD *ssl_method,
         * authenticated ciphers.) */
        ssl_cipher_apply_rule(0, 0, SSL_aNULL, 0, 0, 0, 0, CIPHER_ORD, -1, &head, &tail);
 
-       /* Move ciphers without forward secrecy to then end */
+       /* Move ciphers without forward secrecy to the end */
        ssl_cipher_apply_rule(0, 0, SSL_aECDH, 0, 0, 0, 0, CIPHER_ORD, -1, &head, &tail);
+       /* ssl_cipher_apply_rule(0, 0, SSL_aDH, 0, 0, 0, 0, CIPHER_ORD, -1, &head, &tail); */
        ssl_cipher_apply_rule(0, SSL_kRSA, 0, 0, 0, 0, 0, CIPHER_ORD, -1, &head, &tail);
-       ssl_cipher_apply_rule(0, 0, SSL_kPSK, 0, 0, 0, 0, CIPHER_ORD, -1, &head, &tail);
+       ssl_cipher_apply_rule(0, SSL_kPSK, 0,0, 0, 0, 0, CIPHER_ORD, -1, &head, &tail);
 
        /* RC4 is sort-of broken -- move the the end */
        ssl_cipher_apply_rule(0, 0, 0, SSL_RC4, 0, 0, 0, CIPHER_ORD, -1, &head, &tail);