Hi,

Typo, subject should probably be s/ssh_util/ssl_util

Regards,
Simon

> 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 <a...@unstable.cc>
> ---
>  src/openvpn/ssl_util.h | 13 +++++--------
>  1 file changed, 5 insertions(+), 8 deletions(-)
>
> diff --git a/src/openvpn/ssl_util.h b/src/openvpn/ssl_util.h
> index f38294c1..3695ca3c 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
> --
> 2.30.2
>
>
>
> _______________________________________________
> Openvpn-devel mailing list
> Openvpn-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/openvpn-devel
>




_______________________________________________
Openvpn-devel mailing list
Openvpn-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/openvpn-devel

Reply via email to