Browse Source

[3807] Fixed bug in the Option6StatusCode::toText

Marcin Siodelski 10 years ago
parent
commit
f2323f6d5f
1 changed files with 1 additions and 3 deletions
  1. 1 3
      src/lib/dhcp/option6_status_code.cc

+ 1 - 3
src/lib/dhcp/option6_status_code.cc

@@ -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());
 }