X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fencode_server.cc;fp=src%2Flib%2Fencode_server.cc;h=fd5866ecf29c142a3a62b1c20f3ad4e823225643;hb=6d95d9689831a74fade32038a808f206c03d8aa2;hp=036ea58a5df92b94cb5cde24e6a7666be195f3a4;hpb=3ffd0163026be24e5373e0674c3301ed37546e44;p=dcpomatic.git diff --git a/src/lib/encode_server.cc b/src/lib/encode_server.cc index 036ea58a5..fd5866ecf 100644 --- a/src/lib/encode_server.cc +++ b/src/lib/encode_server.cc @@ -298,8 +298,8 @@ EncodeServer::broadcast_received () /* Reply to the client saying what we can do */ xmlpp::Document doc; auto root = doc.create_root_node ("ServerAvailable"); - root->add_child("Threads")->add_child_text (raw_convert (_worker_threads.size ())); - root->add_child("Version")->add_child_text (raw_convert (SERVER_LINK_VERSION)); + cxml::add_text_child(root, "Threads", raw_convert(_worker_threads.size())); + cxml::add_text_child(root, "Version", raw_convert(SERVER_LINK_VERSION)); auto xml = doc.write_to_string ("UTF-8"); if (_verbose) {