From 01ec62f6e0cd6dfb26177bbf011becf69b40a89d Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Wed, 17 Feb 2010 19:48:33 +0000 Subject: Fixed printing of XHTML DOCTYPE "html" vs. "HTML". --- html.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'html.c') diff --git a/html.c b/html.c index b49d336b..31372b99 100644 --- a/html.c +++ b/html.c @@ -1,4 +1,4 @@ -/* $Id: html.c,v 1.95 2010/01/30 08:42:20 kristaps Exp $ */ +/* $Id: html.c,v 1.96 2010/02/17 19:48:33 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -466,19 +466,23 @@ print_doctype(struct html *h) { const char *doctype; const char *dtd; + const char *name; switch (h->type) { case (HTML_HTML_4_01_STRICT): + name = "HTML"; doctype = "-//W3C//DTD HTML 4.01//EN"; dtd = "http://www.w3.org/TR/html4/strict.dtd"; break; default: + name = "html"; doctype = "-//W3C//DTD XHTML 1.0 Strict//EN"; dtd = "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"; break; } - printf("\n", doctype, dtd); + printf("\n", + name, doctype, dtd); } -- cgit v1.2.3-56-ge451