From: Aki Tuomi Date: Tue, 14 Oct 2014 17:27:45 +0000 (+0300) Subject: Use correct syntax for escapes X-Git-Tag: rec-3.7.0-rc1~189^2~7^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F1820%2Fhead;p=thirdparty%2Fpdns.git Use correct syntax for escapes --- diff --git a/modules/remotebackend/test-remotebackend.cc b/modules/remotebackend/test-remotebackend.cc index a4009c6b87..0d64dd51b8 100644 --- a/modules/remotebackend/test-remotebackend.cc +++ b/modules/remotebackend/test-remotebackend.cc @@ -273,7 +273,7 @@ BOOST_AUTO_TEST_CASE(test_method_feedEnts3) { BOOST_TEST_MESSAGE("Testing feedEnts3 method"); be->startTransaction("example.com",2); map nonterm = boost::assign::map_list_of("_udp", true)("_sip._udp", true); - BOOST_CHECK(be->feedEnts3(2, "example.com", nonterm, 1, "\xaa\xbb\xcc\xdd", 0)); + BOOST_CHECK(be->feedEnts3(2, "example.com", nonterm, 1, "\u00aa\u00bb\u00cc\u00dd", 0)); be->commitTransaction(); }