From a38436fc0cf5f6026275af6923e8df318334b1b9 Mon Sep 17 00:00:00 2001 From: Stephan Bosch <stephan.bosch@open-xchange.com> Date: Tue, 22 Jun 2021 16:21:20 +0200 Subject: [PATCH] managesieve-login: Reformat client.h. --- src/managesieve-login/client.h | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/src/managesieve-login/client.h b/src/managesieve-login/client.h index d2a4dff4a..a04190d9b 100644 --- a/src/managesieve-login/client.h +++ b/src/managesieve-login/client.h @@ -49,12 +49,12 @@ enum managesieve_cmd_reply { MANAGESIEVE_CMD_REPLY_BYE }; -void client_send_reply(struct client *client, - enum managesieve_cmd_reply reply, const char *text); +void client_send_reply(struct client *client, enum managesieve_cmd_reply reply, + const char *text); void client_send_reply_code(struct client *client, - enum managesieve_cmd_reply reply, const char *resp_code, - const char *text); + enum managesieve_cmd_reply reply, + const char *resp_code, const char *text); #define client_send_ok(client, text) \ client_send_reply(client, MANAGESIEVE_CMD_REPLY_OK, text) @@ -64,11 +64,13 @@ void client_send_reply_code(struct client *client, client_send_reply(client, MANAGESIEVE_CMD_REPLY_BYE, text) #define client_send_okresp(client, resp_code, text) \ - client_send_reply_code(client, MANAGESIEVE_CMD_REPLY_OK, resp_code, text) + client_send_reply_code(client, MANAGESIEVE_CMD_REPLY_OK, \ + resp_code, text) #define client_send_noresp(client, resp_code, text) \ - client_send_reply_code(client, MANAGESIEVE_CMD_REPLY_NO, resp_code, text) + client_send_reply_code(client, MANAGESIEVE_CMD_REPLY_NO, \ + resp_code, text) #define client_send_byeresp(client, resp_code, text) \ - client_send_reply_code(client, MANAGESIEVE_CMD_REPLY_BYE, resp_code, text) - + client_send_reply_code(client, MANAGESIEVE_CMD_REPLY_BYE, \ + resp_code, text) #endif -- GitLab