diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2014-04-19 08:52:33 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2014-04-19 08:52:33 +0000 |
commit | a741b41b219682ab8844f1d8339d625d52264d19 (patch) | |
tree | 0cf738e6ba24d3d9932ddf19fe534095af29ef9f /lib/libssl/d1_srtp.c | |
parent | 258d452e925eea9fbd0a6b764407f6b32bd8b733 (diff) |
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; } |