| 291 | } |
| 292 | |
| 293 | static void escape_append(ACL_VSTRING *buf, const char *src, ACL_XML *xml) |
| 294 | { |
| 295 | if (src && *src) { |
| 296 | if ((xml->flag & ACL_XML_FLAG_XML_ENCODE) != 0) |
| 297 | acl_xml_encode(src, buf); |
| 298 | else |
| 299 | acl_vstring_strcat(buf, src); |
| 300 | } |
| 301 | } |
| 302 | |
| 303 | /***************************************************************************/ |
| 304 |
no test coverage detected
searching dependent graphs…