]> diplodocus.org Git - nmh/blobdiff - sbr/fmt_rfc2047.c
Added warning about when post(1) can't refile(1) a draft.
[nmh] / sbr / fmt_rfc2047.c
index 2e063a3b06fc5a9d7a15eb80debe36f6f423e982..2f2c3c4f47cb7cb6e9ee012e4aff2dcc60be8b40 100644 (file)
@@ -1,5 +1,4 @@
-/*
- * fmt_rfc2047.c -- decode RFC-2047 header format 
+/* fmt_rfc2047.c -- decode RFC-2047 header format 
  *
  * This code is Copyright (c) 2002, by the authors of nmh.  See the
  * COPYRIGHT file in the root directory of the nmh distribution for
@@ -190,9 +189,9 @@ decode_rfc2047 (char *str, char *dst, size_t dstlen)
             */
            endofmime = NULL;
            for (pp = startofmime; *pp && *(pp+1); pp++) {
-               if (is_lws(*pp)) {
+               if (is_lws(*pp))
                    break;
-               } else if (*pp == '?' && pp[1] == '=') {
+               if (*pp == '?' && pp[1] == '=') {
                    endofmime = pp;
                    break;
                }