Re: [Openvpn-devel] [PATCH 1/3] Refactor/Reformat tls_pre_decrypt

2020-07-22 Thread tincanteksup
3x minor typos On 22/07/2020 10:30, Arne Schwabe wrote: - Extract data packet handling to its own function - Replace two instances of if (x) { code } with if (!x) return; code - Remove extra curly braces that were used for pre C99 code style to be able to declare

[Openvpn-devel] [PATCH 1/3] Refactor/Reformat tls_pre_decrypt

2020-07-22 Thread Arne Schwabe
- Extract data packet handling to its own function - Replace two instances of if (x) { code } with if (!x) return; code - Remove extra curly braces that were used for pre C99 code style to be able to declare variables in the middle of a block This patch is easier to