aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/inet_diag.c
diff options
context:
space:
mode:
authorRoel Kluin <roel.kluin@gmail.com>2010-01-19 14:12:20 -0800
committerDavid S. Miller <davem@davemloft.net>2010-01-19 14:12:20 -0800
commitb4ced2b768ab6c580148d1163c82a655fe147edc (patch)
tree10478f839854a5c28873a52962ac77c21f4c6e1c /net/ipv4/inet_diag.c
parentS2io: two branches the same in wait_for_cmd_complete() (diff)
downloadlinux-dev-b4ced2b768ab6c580148d1163c82a655fe147edc.tar.xz
linux-dev-b4ced2b768ab6c580148d1163c82a655fe147edc.zip
netlink: With opcode INET_DIAG_BC_S_LE dport was compared in inet_diag_bc_run()
The s-port should be compared. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/inet_diag.c')
-rw-r--r--net/ipv4/inet_diag.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/inet_diag.c b/net/ipv4/inet_diag.c
index bdb78dd180ce..1aaa8110d84b 100644
--- a/net/ipv4/inet_diag.c
+++ b/net/ipv4/inet_diag.c
@@ -368,7 +368,7 @@ static int inet_diag_bc_run(const void *bc, int len,
yes = entry->sport >= op[1].no;
break;
case INET_DIAG_BC_S_LE:
- yes = entry->dport <= op[1].no;
+ yes = entry->sport <= op[1].no;
break;
case INET_DIAG_BC_D_GE:
yes = entry->dport >= op[1].no;