]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lib-auth: scram - Remove trailing whitespace from file
authorKarl Fleischmann <karl.fleischmann@open-xchange.com>
Fri, 1 May 2026 07:13:18 +0000 (09:13 +0200)
committerKarl Fleischmann <karl.fleischmann@open-xchange.com>
Wed, 6 May 2026 12:35:39 +0000 (14:35 +0200)
src/lib-auth/auth-scram-server.c

index 60b8a476af5312b36f84f42c428e47d02af065f8..2e261b34cffeb7e10a868641e656d2e9b39b676d 100644 (file)
@@ -525,7 +525,7 @@ auth_scram_server_input_client_first(struct auth_scram_server *server,
        int ret;
 
        username = login_username = NULL;
-       
+
        /* Parse client-first message */
        ret = auth_scram_parse_client_first(server, input, input_len,
                                            &username, &login_username,
@@ -548,7 +548,7 @@ auth_scram_server_input_client_first(struct auth_scram_server *server,
                *error_code_r = AUTH_SCRAM_SERVER_ERROR_BAD_LOGIN_USERNAME;
                return -1;
        }
-       
+
        return 0;
 }
 
@@ -560,7 +560,7 @@ auth_scram_server_input_client_final(struct auth_scram_server *server,
                                     const char **error_r)
 {
        int ret;
-       
+
        /* Parse client-final message */
        ret = auth_scram_parse_client_final(server, input, input_len, error_r);
        if (ret < 0) {