Helper for DB IDO and Livestatus. */
| 288 | |
| 289 | /* Helper for DB IDO and Livestatus. */ |
| 290 | String CompatUtility::EscapeString(const String& str) |
| 291 | { |
| 292 | String result = str; |
| 293 | boost::algorithm::replace_all(result, "\n", "\\n"); |
| 294 | return result; |
| 295 | } |
| 296 | |
| 297 | /* Used in ExternalCommandListener. */ |
| 298 | String CompatUtility::UnEscapeString(const String& str) |
nothing calls this directly
no outgoing calls
no test coverage detected