BIND 10 trac2786, updated. 7c7bf1d126cddc59ca3ad540e2c2015853509a51 [2876] Minor: added paranthesis in the return statement.

BIND 10 source code commits bind10-changes at lists.isc.org
Thu May 16 07:45:13 UTC 2013


The branch, trac2786 has been updated
       via  7c7bf1d126cddc59ca3ad540e2c2015853509a51 (commit)
      from  85b0a75a0499f2a7a08d6f597e3f90ee4f7be636 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 7c7bf1d126cddc59ca3ad540e2c2015853509a51
Author: Marcin Siodelski <marcin at isc.org>
Date:   Thu May 16 09:44:58 2013 +0200

    [2876] Minor: added paranthesis in the return statement.

-----------------------------------------------------------------------

Summary of changes:
 src/lib/dhcp/option_string.cc |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-----------------------------------------------------------------------
diff --git a/src/lib/dhcp/option_string.cc b/src/lib/dhcp/option_string.cc
index ac1e4b5..b025732 100644
--- a/src/lib/dhcp/option_string.cc
+++ b/src/lib/dhcp/option_string.cc
@@ -36,7 +36,7 @@ OptionString::OptionString(const Option::Universe u, const uint16_t type,
 
 std::string
 OptionString::getValue() const {
-    return std::string(data_.begin(), data_.end());
+    return (std::string(data_.begin(), data_.end()));
 }
 
 void



More information about the bind10-changes mailing list