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/d1_srtp.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/d1_srtp.c')
-rw-r--r-- | lib/libssl/d1_srtp.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/libssl/d1_srtp.c b/lib/libssl/d1_srtp.c index fadd9f381f6..146ce321c8e 100644 --- a/lib/libssl/d1_srtp.c +++ b/lib/libssl/d1_srtp.c @@ -109,11 +109,11 @@ * */ /* - DTLS code by Eric Rescorla <ekr@rtfm.com> - - Copyright (C) 2006, Network Resonance, Inc. - Copyright (C) 2011, RTFM, Inc. -*/ + * DTLS code by Eric Rescorla <ekr@rtfm.com> + * + * Copyright (C) 2006, Network Resonance, Inc. + * Copyright (C) 2011, RTFM, Inc. + */ #include <stdio.h> #include <openssl/objects.h> @@ -232,8 +232,8 @@ SSL_set_tlsext_use_srtp(SSL *s, const char *profiles) } -STACK_OF(SRTP_PROTECTION_PROFILE) -*SSL_get_srtp_profiles(SSL *s) +STACK_OF(SRTP_PROTECTION_PROFILE) * +SSL_get_srtp_profiles(SSL *s) { if (s != NULL) { if (s->srtp_profiles != NULL) { @@ -247,8 +247,8 @@ STACK_OF(SRTP_PROTECTION_PROFILE) return NULL; } -SRTP_PROTECTION_PROFILE -*SSL_get_selected_srtp_profile(SSL *s) +SRTP_PROTECTION_PROFILE * +SSL_get_selected_srtp_profile(SSL *s) { return s->srtp_profile; } |