diff options
author | 2020-04-18 14:41:05 +0000 | |
---|---|---|
committer | 2020-04-18 14:41:05 +0000 | |
commit | a18ccef7adc8ac8c78f73e4dbb803f93c9a24bc2 (patch) | |
tree | ad761fdd312fc2d225d6ec9ef77f84ccb7c5c178 | |
parent | Use size_t not u_int for the bytes counters and fix a const missing. (diff) | |
download | wireguard-openbsd-a18ccef7adc8ac8c78f73e4dbb803f93c9a24bc2.tar.xz wireguard-openbsd-a18ccef7adc8ac8c78f73e4dbb803f93c9a24bc2.zip |
Fix wrapping/indentation.
-rw-r--r-- | lib/libssl/ssl_ciph.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/libssl/ssl_ciph.c b/lib/libssl/ssl_ciph.c index 5952595c5dc..9ba8f404379 100644 --- a/lib/libssl/ssl_ciph.c +++ b/lib/libssl/ssl_ciph.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_ciph.c,v 1.115 2020/04/18 13:47:58 jsing Exp $ */ +/* $OpenBSD: ssl_ciph.c,v 1.116 2020/04/18 14:41:05 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1275,9 +1275,8 @@ ssl_create_cipher_list(const SSL_METHOD *ssl_method, SSLerrorx(ERR_R_MALLOC_FAILURE); return(NULL); /* Failure */ } - ssl_cipher_collect_aliases(ca_list, num_of_group_aliases, - disabled_mkey, disabled_auth, disabled_enc, - disabled_mac, disabled_ssl, head); + ssl_cipher_collect_aliases(ca_list, num_of_group_aliases, disabled_mkey, + disabled_auth, disabled_enc, disabled_mac, disabled_ssl, head); /* * If the rule_string begins with DEFAULT, apply the default rule |