]> diplodocus.org Git - nmh/blobdiff - sbr/fmt_rfc2047.c
sbr/mf.c: Rename path to routepath to avoid h/mh.h clash.
[nmh] / sbr / fmt_rfc2047.c
index aa01913b79e19f80b242ca6cd889258d73c6b6b7..2f2c3c4f47cb7cb6e9ee012e4aff2dcc60be8b40 100644 (file)
@@ -1,6 +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
@@ -191,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;
                }