diff options
author | 2014-04-19 08:52:32 +0000 | |
---|---|---|
committer | 2014-04-19 08:52:32 +0000 | |
commit | dbea66cd1623e97296cb30d20896a9c0c5976d2c (patch) | |
tree | 19fdc86fc22b0040ec8adf299f852dd795e70bb8 /lib/libssl/s23_lib.c | |
parent | tiny fix: Remove duplicate rows, they appeared after importing less 444 (diff) | |
download | wireguard-openbsd-dbea66cd1623e97296cb30d20896a9c0c5976d2c.tar.xz wireguard-openbsd-dbea66cd1623e97296cb30d20896a9c0c5976d2c.zip |
More KNF and style consistency tweaks
Diffstat (limited to 'lib/libssl/s23_lib.c')
-rw-r--r-- | lib/libssl/s23_lib.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libssl/s23_lib.c b/lib/libssl/s23_lib.c index 74afe01d944..226af4b3cb7 100644 --- a/lib/libssl/s23_lib.c +++ b/lib/libssl/s23_lib.c @@ -69,11 +69,11 @@ ssl23_default_timeout(void) int ssl23_num_ciphers(void) { - return(ssl3_num_ciphers()); + return (ssl3_num_ciphers()); } -const SSL_CIPHER -*ssl23_get_cipher(unsigned int u) +const SSL_CIPHER * +ssl23_get_cipher(unsigned int u) { unsigned int uu = ssl3_num_ciphers(); @@ -85,8 +85,8 @@ const SSL_CIPHER /* This function needs to check if the ciphers required are actually * available */ -const SSL_CIPHER -*ssl23_get_cipher_by_char(const unsigned char *p) +const SSL_CIPHER * +ssl23_get_cipher_by_char(const unsigned char *p) { const SSL_CIPHER *cp; |