From: Peter van Dijk Date: Mon, 30 Sep 2013 09:21:25 +0000 (+0200) Subject: add semicolon, thanks @pavel-odintsov X-Git-Tag: rec-3.6.0-rc1~426 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c86a96f9bcb726f4058bcacaf1fc45c421021946;p=thirdparty%2Fpdns.git add semicolon, thanks @pavel-odintsov --- 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 += "<";