BIND 10 trac2701, updated. e0c71421f186a8cf77f1bf7aba7aff072a9caff7 [2701] Added missing const in the function getting client_id.
BIND 10 source code commits
bind10-changes at lists.isc.org
Wed Feb 13 17:20:53 UTC 2013
The branch, trac2701 has been updated
via e0c71421f186a8cf77f1bf7aba7aff072a9caff7 (commit)
from 532c36304e8b5caf9faf9e98a66967c1073f5353 (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 e0c71421f186a8cf77f1bf7aba7aff072a9caff7
Author: Marcin Siodelski <marcin at isc.org>
Date: Wed Feb 13 18:20:44 2013 +0100
[2701] Added missing const in the function getting client_id.
-----------------------------------------------------------------------
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 f1c8866..3b81453 100644
--- a/src/lib/dhcp/duid.cc
+++ b/src/lib/dhcp/duid.cc
@@ -91,7 +91,7 @@ ClientId::ClientId(const uint8_t *clientid, size_t len)
}
// Returns a copy of client-id data
-const std::vector<uint8_t> ClientId::getClientId() const {
+std::vector<uint8_t> ClientId::getClientId() const {
return (duid_);
}
More information about the bind10-changes
mailing list