2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-01 22:45:18 +00:00

[3807] Fixed bug in the Option6StatusCode::toText

This commit is contained in:
Marcin Siodelski
2015-06-09 13:58:43 +02:00
parent 329c1c9ae1
commit f2323f6d5f

View File

@@ -84,9 +84,7 @@ Option6StatusCode::len() {
std::string
Option6StatusCode::toText(int indent) {
std::ostringstream output;
output << headerToText(indent) << ": "
<< getStatusCodeName() << "(" << getStatusCode() << ") "
<< dataToText();
output << headerToText(indent) << ": " << dataToText();
return (output.str());
}