]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
auth: Reformat mech-scram.c.
authorStephan Bosch <stephan.bosch@open-xchange.com>
Thu, 5 Jan 2023 00:27:07 +0000 (01:27 +0100)
committeraki.tuomi <aki.tuomi@open-xchange.com>
Fri, 27 Jan 2023 09:34:54 +0000 (09:34 +0000)
src/auth/mech-scram.c

index fff9f1f605c4becbd58f90cbc02f745ee4a760c8..8940420f62213fa668d313e8045f2fe5d29e0afe 100644 (file)
@@ -74,7 +74,7 @@ get_scram_server_first(struct scram_auth_request *request,
 
        random_fill(snonce, sizeof(snonce)-1);
 
-       /* make sure snonce is printable and does not contain ',' */
+       /* Make sure snonce is printable and does not contain ',' */
        for (i = 0; i < sizeof(snonce)-1; i++) {
                snonce[i] = (snonce[i] % ('~' - '!')) + '!';
                if (snonce[i] == ',')