summaryrefslogtreecommitdiffstats
path: root/lib/libssl/ssl_ciph.c
diff options
context:
space:
mode:
authormmcc <mmcc@openbsd.org>2015-12-12 22:04:10 +0000
committermmcc <mmcc@openbsd.org>2015-12-12 22:04:10 +0000
commit620068930662c1969c6a6582bfed0c623fd93db1 (patch)
treec412b1f42882d75337a4bae1db2336372419bd02 /lib/libssl/ssl_ciph.c
parentRemove calloc cast, give sizeof parens. No functional change. (diff)
downloadwireguard-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.c4
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