mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-09-02 15:05:16 +00:00
[3807] Fixed bug in the Option6StatusCode::toText
This commit is contained in:
@@ -84,9 +84,7 @@ Option6StatusCode::len() {
|
|||||||
std::string
|
std::string
|
||||||
Option6StatusCode::toText(int indent) {
|
Option6StatusCode::toText(int indent) {
|
||||||
std::ostringstream output;
|
std::ostringstream output;
|
||||||
output << headerToText(indent) << ": "
|
output << headerToText(indent) << ": " << dataToText();
|
||||||
<< getStatusCodeName() << "(" << getStatusCode() << ") "
|
|
||||||
<< dataToText();
|
|
||||||
|
|
||||||
return (output.str());
|
return (output.str());
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user