Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/net Fix the build.



details:   https://anonhg.NetBSD.org/src/rev/97df4b7cca6e
branches:  trunk
changeset: 336084:97df4b7cca6e
user:      alnsn <alnsn%NetBSD.org@localhost>
date:      Wed Feb 11 12:53:15 2015 +0000

description:
Fix the build.

diffstat:

 sys/net/bpf_filter.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (29 lines):

diff -r 50abc2ad590f -r 97df4b7cca6e sys/net/bpf_filter.c
--- a/sys/net/bpf_filter.c      Wed Feb 11 12:03:30 2015 +0000
+++ b/sys/net/bpf_filter.c      Wed Feb 11 12:53:15 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bpf_filter.c,v 1.69 2015/02/11 12:03:30 alnsn Exp $    */
+/*     $NetBSD: bpf_filter.c,v 1.70 2015/02/11 12:53:15 alnsn Exp $    */
 
 /*-
  * Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bpf_filter.c,v 1.69 2015/02/11 12:03:30 alnsn Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bpf_filter.c,v 1.70 2015/02/11 12:53:15 alnsn Exp $");
 
 #if 0
 #if !(defined(lint) || defined(KERNEL))
@@ -628,8 +628,8 @@
        if (len > BPF_MAXINSNS)
                return 0;
 #endif
-       if (f[len - 1].code != BPF_RET|BPF_K &&
-           f[len - 1].code != BPF_RET|BPF_A) {
+       if (f[len - 1].code != (BPF_RET|BPF_K) &&
+           f[len - 1].code != (BPF_RET|BPF_A)) {
                return 0;
        }
 



Home | Main Index | Thread Index | Old Index