From: Antonio Quartulli
Date: Thu, 18 Aug 2022 08:05:50 +0000 (+0200)
Subject: ssl_util: fix prototype style
X-Git-Tag: v2.6_beta1~104
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=31346b8d8df6fb09faa56d53508205a8b74c15df;p=thirdparty%2Fopenvpn.git
ssl_util: fix prototype style
Function prototypes should have the return type on the same line as the
function name itself. Fix this in ssl_util.h.
Signed-off-by: Antonio Quartulli
Acked-by: Gert Doering
Message-Id: <20220818080550.177771-1-a@unstable.cc>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg24983.html
Signed-off-by: Gert Doering
---
diff --git a/src/openvpn/ssl_util.h b/src/openvpn/ssl_util.h
index f38294c19..3695ca3c3 100644
--- a/src/openvpn/ssl_util.h
+++ b/src/openvpn/ssl_util.h
@@ -41,10 +41,8 @@
* @return The content of the variable as NULL terminated string or NULL if the
* variable cannot be found.
*/
-char *
-extract_var_peer_info(const char *peer_info,
- const char *var,
- struct gc_arena *gc);
+char *extract_var_peer_info(const char *peer_info, const char *var,
+ struct gc_arena *gc);
/**
* Extracts the IV_PROTO variable and returns its value or 0
@@ -52,8 +50,7 @@ extract_var_peer_info(const char *peer_info,
*
* @param peer_info peer info string to search for IV_PROTO
*/
-unsigned int
-extract_iv_proto(const char *peer_info);
+unsigned int extract_iv_proto(const char *peer_info);
/**
* Takes a locally produced OCC string for TLS server mode and modifies as
@@ -67,6 +64,6 @@ extract_iv_proto(const char *peer_info);
* @param gc gc_arena to allocate the returned string in
* @return the modified string or options on error
*/
-const char *
-options_string_compat_lzo(const char *options, struct gc_arena *gc);
+const char *options_string_compat_lzo(const char *options, struct gc_arena *gc);
+
#endif