From: Wilfried Göesgens Date: Mon, 26 Apr 2010 22:22:37 +0000 (+0000) Subject: * output_html(): it needs to be isspace()src="cid: not src="cid: X-Git-Tag: v7.86~246 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=15117b617ed5ad10616afee901e80d18922155fe * output_html(): it needs to be isspace()src="cid: not src="cid: --- 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,'"'))