]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lib-smtp: Fix minor formatting issues in test-smtp-client-errors.c
authorStephan Bosch <stephan.bosch@open-xchange.com>
Sat, 21 Jun 2025 16:04:29 +0000 (18:04 +0200)
committertimo.sirainen <timo.sirainen@open-xchange.com>
Sun, 29 Jun 2025 17:22:15 +0000 (17:22 +0000)
src/lib-smtp/test-smtp-client-errors.c

index 260ba8d82e8ef05f31b4b506c166edee15cb3ee2..4fd38a1f9d40ff205b822d9b0268aee5d973f763 100644 (file)
@@ -851,7 +851,7 @@ test_client_connection_lost_finished(struct _connection_lost_peer *pctx)
 
 static void
 test_client_connection_lost_submit(struct _connection_lost *ctx,
-       unsigned int index)
+                                  unsigned int index)
 {
        static const char *message =
                "From: stephan@example.com\r\n"
@@ -948,7 +948,7 @@ test_unexpected_reply_init(struct server_connection *conn)
 
 static int
 test_unexpected_reply_input_line(struct server_connection *conn,
-       const char *line ATTR_UNUSED)
+                                const char *line ATTR_UNUSED)
 {
        switch (conn->state) {
        case SERVER_CONNECTION_STATE_EHLO:
@@ -1399,7 +1399,8 @@ test_premature_reply_init(struct server_connection *conn)
 }
 
 static int
-test_premature_reply_input_line(struct server_connection *conn, const char *line)
+test_premature_reply_input_line(struct server_connection *conn,
+                               const char *line)
 {
        if (debug)
                i_debug("[%u] GOT LINE: %s", server_index, line);
@@ -2111,7 +2112,7 @@ static void test_early_data_reply(void)
 
 static int
 test_bad_reply_input_line(struct server_connection *conn,
-       const char *line ATTR_UNUSED)
+                         const char *line ATTR_UNUSED)
 {
        if (conn->state == SERVER_CONNECTION_STATE_EHLO)
                return 0;
@@ -2900,7 +2901,7 @@ static void test_dns_lookup_failure(void)
 
 static int
 test_authentication_input_line(struct server_connection *conn,
-                                     const char *line ATTR_UNUSED)
+                              const char *line ATTR_UNUSED)
 {
        switch (conn->state) {
        case SERVER_CONNECTION_STATE_EHLO:
@@ -3114,7 +3115,7 @@ test_client_authentication_finished(
 
 static void
 test_client_authentication_submit(struct _authentication *ctx,
-                                        unsigned int index)
+                                 unsigned int index)
 {
        struct _authentication_peer *pctx;
        struct smtp_client_settings smtp_set;