summaryrefslogtreecommitdiffstats
path: root/src/lib/dhcp/pkt6.cc
diff options
context:
space:
mode:
authorMarcin Siodelski <marcin@isc.org>2013-10-10 12:48:11 +0200
committerMarcin Siodelski <marcin@isc.org>2013-10-10 12:48:11 +0200
commit36eabc93eddd0eaf89ba2a5c29cf802bab4ad9e0 (patch)
treee5b907ed16de822e5a55587d60308a4de5f38d59 /src/lib/dhcp/pkt6.cc
parent[3180] Addressed review comments. (diff)
downloadkea-36eabc93eddd0eaf89ba2a5c29cf802bab4ad9e0.tar.xz
kea-36eabc93eddd0eaf89ba2a5c29cf802bab4ad9e0.zip
[3180] Addressed additional review comments.
Diffstat (limited to 'src/lib/dhcp/pkt6.cc')
-rw-r--r--src/lib/dhcp/pkt6.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/dhcp/pkt6.cc b/src/lib/dhcp/pkt6.cc
index c4dcfbba4d..9d194a5b2e 100644
--- a/src/lib/dhcp/pkt6.cc
+++ b/src/lib/dhcp/pkt6.cc
@@ -333,7 +333,7 @@ Pkt6::unpackMsg(OptionBuffer::const_iterator begin,
// The last two arguments hold the DHCPv6 Relay message offset and
// length. Setting them to NULL because we are dealing with the
// not-relayed message.
- callback_(opt_buffer, "dhcp6", options_, 0, 0);
+ callback_(opt_buffer, "dhcp6", options_, NULL, NULL);
}
} catch (const Exception& e) {
// @todo: throw exception here once we turn this function to void.