From 15117b617ed5ad10616afee901e80d18922155fe Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Mon, 26 Apr 2010 22:22:37 +0000 Subject: [PATCH] * output_html(): it needs to be isspace()src="cid: not src="cid: --- webcit/html2html.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webcit/html2html.c b/webcit/html2html.c index 1daf7b410..91bac48ea 100644 --- a/webcit/html2html.c +++ b/webcit/html2html.c @@ -409,10 +409,11 @@ void output_html(const char *supplied_charset, int treat_as_wiki, int msgnum, St lprintf(9, "Theoretical bytes remaining: %d\n", msgend - ptr); } - src=strstr(ptr, " src=\"cid:"); + src=strstr(ptr, "src=\"cid:"); ++brak; if (src + && isspace(*(src-1)) && tag_end && (cid_start=strchr(src,':')) && (cid_end=strchr(cid_start,'"')) -- 2.30.2