aboutsummaryrefslogtreecommitdiff
path: root/src/openvpn/manage.c
diff options
context:
space:
mode:
authorArne Schwabe2020-04-16 13:39:30 +0200
committerGert Doering2020-04-19 12:33:38 +0200
commit9cf7b4925a54d93fbea1cadcf3dc0e11f3ce358f (patch)
tree6697aac029015cbc7e8b7f46412236ce0fa9fe62 /src/openvpn/manage.c
parentcbde07f474ae9e92b329475767c4660dd35b4ee4 (diff)
downloadopenvpn-9cf7b4925a54d93fbea1cadcf3dc0e11f3ce358f.zip
openvpn-9cf7b4925a54d93fbea1cadcf3dc0e11f3ce358f.tar.gz
Another round of uncrustify code cleanup.
After the last big formatting patch a number of changes have been commited that do not conform with our style/uncrustify config. This has lead to the problem that running uncrustify on before sending PR some of the changes made by uncrustify need to be backed out again. To bring everything back to the agreed upon style, run uncrustify once more. Uncrustify version used: Uncrustify-0.70.1_f I double checked the result by running uncrustify (Uncrustify-0.69.0_f) from Ubuntu focal/20.04 which does not do any further changes and uncrustify 0.66.1_f from Ubuntu bionic/18.04 Signed-off-by: Arne Schwabe <arne@rfc2549.org> Acked-by: Gert Doering <gert@greenie.muc.de> Message-Id: <20200416113930.15192-3-arne@rfc2549.org> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg19750.html Signed-off-by: Gert Doering <gert@greenie.muc.de>
Diffstat (limited to 'src/openvpn/manage.c')
-rw-r--r--src/openvpn/manage.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/openvpn/manage.c b/src/openvpn/manage.c
index 49864c0..195941c 100644
--- a/src/openvpn/manage.c
+++ b/src/openvpn/manage.c
@@ -3660,9 +3660,9 @@ management_query_pk_sig(struct management *man, const char *b64_data,
buf_write(&buf_data, ",", (int) strlen(","));
buf_write(&buf_data, algorithm, (int) strlen(algorithm));
}
- char* ret = management_query_multiline_flatten(man,
- (char *)buf_bptr(&buf_data), prompt, desc,
- &man->connection.ext_key_state, &man->connection.ext_key_input);
+ char *ret = management_query_multiline_flatten(man,
+ (char *)buf_bptr(&buf_data), prompt, desc,
+ &man->connection.ext_key_state, &man->connection.ext_key_input);
free_buf(&buf_data);
return ret;
}