diff --git a/client/acct_mgr.cpp b/client/acct_mgr.cpp index c7db2d8da3..4fb7ecf02b 100644 --- a/client/acct_mgr.cpp +++ b/client/acct_mgr.cpp @@ -409,7 +409,7 @@ int ACCT_MGR_OP::parse(FILE* f) { } if (log_flags.unparsed_xml) { msg_printf(NULL, MSG_INFO, - "[unparsed_xml] ACCT_MGR_OP::parse: unrecognized tag <%s>", + "[unparsed_xml] ACCT_MGR_OP::parse: unrecognized tag <%s/>", xp.parsed_tag ); } diff --git a/client/log_flags.cpp b/client/log_flags.cpp index 7e9386d924..25c74451b7 100644 --- a/client/log_flags.cpp +++ b/client/log_flags.cpp @@ -457,7 +457,7 @@ int CC_CONFIG::parse_options_client(XML_PARSER& xp) { msg_printf_notice(NULL, false, "http://boinc.berkeley.edu/manager_links.php?target=notice&controlid=config", - "%s: <%s>", + "%s: <%s/>", _("Unrecognized tag in cc_config.xml"), xp.parsed_tag ); @@ -512,7 +512,7 @@ int CC_CONFIG::parse_client(FILE* f) { if (xp.match_tag("log_flags/")) continue; msg_printf_notice(NULL, false, "http://boinc.berkeley.edu/manager_links.php?target=notice&controlid=config", - "%s: <%s>", + "%s: <%s/>", _("Unrecognized tag in cc_config.xml"), xp.parsed_tag ); diff --git a/lib/parse.cpp b/lib/parse.cpp index a866979dd9..4e1c91d0d3 100644 --- a/lib/parse.cpp +++ b/lib/parse.cpp @@ -878,7 +878,7 @@ void XML_PARSER::skip_unexpected( if (verbose) { fprintf(stderr, - "%s: Unrecognized XML tag '<%s>' in %s; skipping\n", + "%s: Unrecognized XML tag '<%s/>' in %s; skipping\n", time_to_string(dtime()), start_tag, where ); }