From: Stephan Bosch Date: Thu, 5 Jan 2023 00:27:07 +0000 (+0100) Subject: auth: Reformat mech-scram.c. X-Git-Tag: 2.4.0~3154 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=836edcd655e2726c2be76f9414d0541b3b607032;p=thirdparty%2Fdovecot%2Fcore.git auth: Reformat mech-scram.c. --- diff --git a/src/auth/mech-scram.c b/src/auth/mech-scram.c index fff9f1f605..8940420f62 100644 --- a/src/auth/mech-scram.c +++ b/src/auth/mech-scram.c @@ -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] == ',')