diff options
author | 2015-12-12 22:04:10 +0000 | |
---|---|---|
committer | 2015-12-12 22:04:10 +0000 | |
commit | 620068930662c1969c6a6582bfed0c623fd93db1 (patch) | |
tree | c412b1f42882d75337a4bae1db2336372419bd02 /lib/libssl/ssl_ciph.c | |
parent | Remove calloc cast, give sizeof parens. No functional change. (diff) | |
download | wireguard-openbsd-620068930662c1969c6a6582bfed0c623fd93db1.tar.xz wireguard-openbsd-620068930662c1969c6a6582bfed0c623fd93db1.zip |
decipher comment. ok bcook@
Diffstat (limited to 'lib/libssl/ssl_ciph.c')
-rw-r--r-- | lib/libssl/ssl_ciph.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/ssl_ciph.c b/lib/libssl/ssl_ciph.c index 46f1697fec6..05bfc47c1ed 100644 --- a/lib/libssl/ssl_ciph.c +++ b/lib/libssl/ssl_ciph.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_ciph.c,v 1.83 2015/09/13 12:34:02 jsing Exp $ */ +/* $OpenBSD: ssl_ciph.c,v 1.84 2015/12/12 22:04:10 mmcc Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1451,7 +1451,7 @@ ssl_create_cipher_list(const SSL_METHOD *ssl_method, ssl_cipher_apply_rule(0, 0, SSL_aECDH, 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); - /* RC4 is sort-of broken -- move the the end */ + /* RC4 is sort of broken - move it to the end */ ssl_cipher_apply_rule(0, 0, 0, SSL_RC4, 0, 0, 0, CIPHER_ORD, -1, &head, &tail); /* Now sort by symmetric encryption strength. The above ordering remains |