BIND 10 trac2701, updated. 86ac11a23c5c1c50b3d8daf1932103476674c72c [2701] Added missing const to the function returning DUID.
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu Feb 14 13:35:17 UTC 2013
The branch, trac2701 has been updated
via 86ac11a23c5c1c50b3d8daf1932103476674c72c (commit)
from b377f3a03ff6d2ba7b1fc562ae75707ddff310c7 (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 86ac11a23c5c1c50b3d8daf1932103476674c72c
Author: Marcin Siodelski <marcin at isc.org>
Date: Thu Feb 14 14:35:08 2013 +0100
[2701] Added missing const to the function returning DUID.
-----------------------------------------------------------------------
Summary of changes:
src/lib/dhcp/duid.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
-----------------------------------------------------------------------
diff --git a/src/lib/dhcp/duid.cc b/src/lib/dhcp/duid.cc
index 3b81453..e0df45d 100644
--- a/src/lib/dhcp/duid.cc
+++ b/src/lib/dhcp/duid.cc
@@ -41,7 +41,7 @@ DUID::DUID(const uint8_t* data, size_t len) {
duid_ = std::vector<uint8_t>(data, data + len);
}
-const std::vector<uint8_t> DUID::getDuid() const {
+std::vector<uint8_t> DUID::getDuid() const {
return (duid_);
}
More information about the bind10-changes
mailing list