Author: rpaulo Date: Sun Mar 22 00:47:41 2009 New Revision: 190234 URL: http://svn.freebsd.org/changeset/base/190234
Log: bpf_filter() and bpf_validate() can't live here if they already live in bpf.h Modified: head/contrib/libpcap/pcap/pcap.h Modified: head/contrib/libpcap/pcap/pcap.h ============================================================================== --- head/contrib/libpcap/pcap/pcap.h Sun Mar 22 00:45:47 2009 (r190233) +++ head/contrib/libpcap/pcap/pcap.h Sun Mar 22 00:47:41 2009 (r190234) @@ -336,8 +336,8 @@ void pcap_freealldevs(pcap_if_t *); const char *pcap_lib_version(void); /* XXX this guy lives in the bpf tree */ -u_int bpf_filter(const struct bpf_insn *, const u_char *, u_int, u_int); -int bpf_validate(const struct bpf_insn *f, int len); +/* u_int bpf_filter(const struct bpf_insn *, const u_char *, u_int, u_int); +int bpf_validate(const struct bpf_insn *f, int len); */ char *bpf_image(const struct bpf_insn *, int); void bpf_dump(const struct bpf_program *, int); _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "[email protected]"
