From c86a96f9bcb726f4058bcacaf1fc45c421021946 Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Mon, 30 Sep 2013 11:21:25 +0200 Subject: [PATCH] add semicolon, thanks @pavel-odintsov --- pdns/ws.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/ws.cc b/pdns/ws.cc index 7c02d31d65..004e1a4bc5 100644 --- a/pdns/ws.cc +++ b/pdns/ws.cc @@ -99,7 +99,7 @@ static string htmlescape(const string &s) { for(string::const_iterator it=s.begin(); it!=s.end(); ++it) { switch (*it) { case '&': - result += "&"; + result += "&"; break; case '<': result += "<"; -- 2.47.2