-/*
- * 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
*/
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;
}