]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lib-mail: Removed obsolete comment about message_header_hash_more()
authorTimo Sirainen <timo.sirainen@dovecot.fi>
Thu, 22 Sep 2016 11:16:12 +0000 (14:16 +0300)
committerTimo Sirainen <timo.sirainen@dovecot.fi>
Thu, 22 Sep 2016 11:44:51 +0000 (14:44 +0300)
pop3-migration plugin uses this function now, so it doesn't need to be kept
in sync.

src/lib-mail/message-header-hash.c

index fa6b183bc0a8bdf60bef27d7698cf94b07283d79..c1f6d2142637020a6dc59f1cf94a145701c53c8e 100644 (file)
@@ -27,9 +27,7 @@ void message_header_hash_more(const struct hash_method *method, void *context,
 
           So we'll just replace all control and 8bit chars with '?' and
           remove any repeated '?', which hopefully will satisfy everybody.
-
-          (Keep this code in sync with pop3-migration plugin.)
-          */
+       */
        for (i = start = 0; i < size; i++) {
                if ((data[i] < 0x20 || data[i] >= 0x7f || data[i] == '?') &&
                    (data[i] != '\t' && data[i] != '\n')) {