diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2020-04-18 14:41:06 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2020-04-18 14:41:06 +0000 |
commit | 7240f9bee3f815e64407427f816ddb3ccbad9c85 (patch) | |
tree | 997a288d5f8376aaee5a8e7baa0fc7fc4559523e | |
parent | 768f1bd27b3e2653917919faee1319a8c8a50b6b (diff) |
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 |