]> 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)
committerTimo Sirainen <timo.sirainen@open-xchange.com>
Fri, 28 Jan 2022 13:22:35 +0000 (14:22 +0100)
src/lib-smtp/smtp-client-connection.c

index 132914a588cc9e7ee3a91a12beacd022f07a578b..f97f68d61a2d77d3ec305276cf3b25c0799a2c12 100644 (file)
@@ -910,10 +910,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));