diff --git a/src/managesieve-login/client.h b/src/managesieve-login/client.h
index d2a4dff4ad36a71dfd60a12902fb618b0ed23461..a04190d9bd787232c381d6dc814587378b407cd5 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