From: Marcin Siodelski Date: Mon, 29 Apr 2013 11:16:45 +0000 (+0200) Subject: [2902] Corrected error in the namespace name. X-Git-Tag: bind10-1.2.0beta1-release~440^2~16 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eecd53050bae78469caad312532cbf404244f1e2;p=thirdparty%2Fkea.git [2902] Corrected error in the namespace name. --- diff --git a/src/lib/dhcp/pkt_filter_lpf.cc b/src/lib/dhcp/pkt_filter_lpf.cc index 82c811946a..beffa8b8ff 100644 --- a/src/lib/dhcp/pkt_filter_lpf.cc +++ b/src/lib/dhcp/pkt_filter_lpf.cc @@ -52,7 +52,7 @@ struct sock_filter dhcp_sock_filter [] = { BPF_STMT (BPF_LD + BPF_H + BPF_IND, 16), // Use default DHCP server port, but it can be // replaced if neccessary. - BPF_JUMP (BPF_JMP + BPF_JEQ + BPF_K, DHCP4_SERVER_PORT, 0, 1), + BPF_JUMP (BPF_JMP + BPF_JEQ + BPF_K, isc::dhcp::DHCP4_SERVER_PORT, 0, 1), // If we passed all the tests, ask for the whole packet. BPF_STMT(BPF_RET+BPF_K, (u_int)-1),