]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2902] Corrected error in the namespace name.
authorMarcin Siodelski <marcin@isc.org>
Mon, 29 Apr 2013 11:16:45 +0000 (13:16 +0200)
committerMarcin Siodelski <marcin@isc.org>
Mon, 29 Apr 2013 11:16:45 +0000 (13:16 +0200)
src/lib/dhcp/pkt_filter_lpf.cc

index 82c811946adbb6498319fae712aa3ed540b133c2..beffa8b8fffea758b9145d5f40e0bead2bbdcb79 100644 (file)
@@ -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),