X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/8a14191c0a0ad15bb8f35b49748c75c1e0a8c2f4..582d5e802ceb8e0c7f0dc5b83fdbf2a62fc10fb3:/sbr/encode_rfc2047.c?ds=sidebyside diff --git a/sbr/encode_rfc2047.c b/sbr/encode_rfc2047.c index d964cbde..238882dc 100644 --- a/sbr/encode_rfc2047.c +++ b/sbr/encode_rfc2047.c @@ -1,5 +1,4 @@ -/* - * Routines to encode message headers using RFC 2047-encoding. +/* encode_rfc2047.c -- encode message headers using RFC 2047 encoding. * * This code is Copyright (c) 2002, by the authors of nmh. See the * COPYRIGHT file in the root directory of the nmh distribution for @@ -289,7 +288,7 @@ field_encode_quoted(const char *name, char **value, const char *charset, if (q == NULL) { /* This should never happen, but just in case. Found by clang static analyzer. */ - admonish (NULL, "null output encoding for %s", *value); + inform("null output encoding for %s, continuing...", *value); return 1; } *q++ = '?'; @@ -737,7 +736,7 @@ do_reformat: if (groupflag && ! mn->m_ingrp) { output = add(";", output); - column += 1; + column++; } groupflag = mn->m_ingrp;