]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lib-smtp: smtp-client-connection - Reformat comment.
authorStephan Bosch <stephan.bosch@open-xchange.com>
Fri, 21 Jan 2022 01:28:23 +0000 (02:28 +0100)
committeraki.tuomi <aki.tuomi@open-xchange.com>
Mon, 31 Jan 2022 06:41:58 +0000 (06:41 +0000)
src/lib-smtp/smtp-client-connection.c

index 8e812c23877a259ac66e4ee071f5222a0c91152c..ad10147b5140e2e72e83de49b93df59a64ff8027 100644 (file)
@@ -916,10 +916,11 @@ smtp_client_connection_authenticate(struct smtp_client_connection *conn)
 
        /* RFC 4954, Section 4:
 
-          If the client is transmitting an initial response of zero
-          length, it MUST instead transmit the response as a single
-          equals sign ("=").  This indicates that the response is
-          present, but contains no data. */
+          If the client is transmitting an initial response of zero length, it
+          MUST instead transmit the response as a single equals sign ("=").
+          This indicates that the response is present, but contains no data.
+        */
+
        init_resp = (str_len(sasl_output_base64) == 0 ?
                     "=" : str_c(sasl_output_base64));