Skip to content

Commit

Permalink
lib-mail: Removed obsolete comment about message_header_hash_more()
Browse files Browse the repository at this point in the history
pop3-migration plugin uses this function now, so it doesn't need to be kept
in sync.
  • Loading branch information
sirainen authored and GitLab committed Sep 22, 2016
1 parent a415de5 commit f4b1d51
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/lib-mail/message-header-hash.c
Expand Up @@ -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')) {
Expand Down

0 comments on commit f4b1d51

Please sign in to comment.