diff options
Diffstat (limited to '')
-rw-r--r-- | src/relay.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/relay.cpp b/src/relay.cpp index 25f3aac7..2edc9a28 100644 --- a/src/relay.cpp +++ b/src/relay.cpp @@ -213,8 +213,8 @@ void relay::generate(utility::outputStream& os, const string::size_type maxLineL oss << "; " << m_date.generate(); - encodeAndFoldText(os, text(oss.str()), maxLineLength, - curLinePos, newLinePos, encodeAndFoldFlags::forceNoEncoding); + text(oss.str()).encodeAndFold(os, maxLineLength, + curLinePos, newLinePos, text::FORCE_NO_ENCODING); } |