diff options
author | jsing <> | 2020-04-09 17:24:11 +0000 |
---|---|---|
committer | jsing <> | 2020-04-09 17:24:11 +0000 |
commit | 5b98feac0687e91810d83a326fbad75aac4735b0 (patch) | |
tree | 82a5597168d01999b404ee52b6a410fcc4c5765d /src | |
parent | fcd3df64bdc8f7133fcf01c3ca7ca322aa88bd27 (diff) | |
download | openbsd-5b98feac0687e91810d83a326fbad75aac4735b0.tar.gz openbsd-5b98feac0687e91810d83a326fbad75aac4735b0.tar.bz2 openbsd-5b98feac0687e91810d83a326fbad75aac4735b0.zip |
Tidy line wrapping and remove an extra blank line.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libssl/ssl_ciph.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/lib/libssl/ssl_ciph.c b/src/lib/libssl/ssl_ciph.c index 20a9005ee2..393f0fbd18 100644 --- a/src/lib/libssl/ssl_ciph.c +++ b/src/lib/libssl/ssl_ciph.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_ciph.c,v 1.111 2020/04/09 17:22:52 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_ciph.c,v 1.112 2020/04/09 17:24:11 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -758,14 +758,13 @@ ssl_cipher_collect_aliases(const SSL_CIPHER **ca_list, int num_of_group_aliases, | |||
758 | static void | 758 | static void |
759 | ssl_cipher_apply_rule(unsigned long cipher_id, unsigned long alg_mkey, | 759 | ssl_cipher_apply_rule(unsigned long cipher_id, unsigned long alg_mkey, |
760 | unsigned long alg_auth, unsigned long alg_enc, unsigned long alg_mac, | 760 | unsigned long alg_auth, unsigned long alg_enc, unsigned long alg_mac, |
761 | unsigned long alg_ssl, unsigned long algo_strength, | 761 | unsigned long alg_ssl, unsigned long algo_strength, int rule, |
762 | int rule, int strength_bits, CIPHER_ORDER **head_p, CIPHER_ORDER **tail_p) | 762 | int strength_bits, CIPHER_ORDER **head_p, CIPHER_ORDER **tail_p) |
763 | { | 763 | { |
764 | CIPHER_ORDER *head, *tail, *curr, *next, *last; | 764 | CIPHER_ORDER *head, *tail, *curr, *next, *last; |
765 | const SSL_CIPHER *cp; | 765 | const SSL_CIPHER *cp; |
766 | int reverse = 0; | 766 | int reverse = 0; |
767 | 767 | ||
768 | |||
769 | if (rule == CIPHER_DEL) | 768 | if (rule == CIPHER_DEL) |
770 | reverse = 1; /* needed to maintain sorting between currently deleted ciphers */ | 769 | reverse = 1; /* needed to maintain sorting between currently deleted ciphers */ |
771 | 770 | ||