From f2323f6d5fd44fa6c761e34a9bd38a5955081063 Mon Sep 17 00:00:00 2001 From: Marcin Siodelski Date: Tue, 9 Jun 2015 13:58:43 +0200 Subject: [PATCH] [3807] Fixed bug in the Option6StatusCode::toText --- src/lib/dhcp/option6_status_code.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/lib/dhcp/option6_status_code.cc b/src/lib/dhcp/option6_status_code.cc index 48a7f5cc9f..2616414f4f 100644 --- a/src/lib/dhcp/option6_status_code.cc +++ b/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()); } -- 2.47.3