diff options
author | Simon Horman <horms@verge.net.au> | 2006-09-28 01:52:47 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-28 21:02:55 -0400 |
commit | e44fd82caf89a8548e7868592618b243e85c69e6 (patch) | |
tree | 081fc3cfa6d9fb219485c2b54b9c4982a50d1cad /net/ipv4 | |
parent | febac9b93724f3ee293e7e5450043ae28e61531a (diff) |
[IPVS]: Reverse valid ip_vs_ftp ports fix: port check approach
This patch reverses 3f5af5b353ca36aca4f8a46e3da2172f669dbbbc as
a better fix was suggested by Patrick McHardy.
Signed-off-by: Simon Horman <horms@verge.net.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/ipvs/ip_vs_ftp.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/net/ipv4/ipvs/ip_vs_ftp.c b/net/ipv4/ipvs/ip_vs_ftp.c index 37fafb1fbcff..4df215c51c71 100644 --- a/net/ipv4/ipvs/ip_vs_ftp.c +++ b/net/ipv4/ipvs/ip_vs_ftp.c | |||
@@ -365,12 +365,6 @@ static int __init ip_vs_ftp_init(void) | |||
365 | for (i=0; i<IP_VS_APP_MAX_PORTS; i++) { | 365 | for (i=0; i<IP_VS_APP_MAX_PORTS; i++) { |
366 | if (!ports[i]) | 366 | if (!ports[i]) |
367 | continue; | 367 | continue; |
368 | if (ports[i] < 0 || ports[i] > 0xffff) { | ||
369 | IP_VS_WARNING("ip_vs_ftp: Ignoring invalid " | ||
370 | "configuration port[%d] = %d\n", | ||
371 | i, ports[i]); | ||
372 | continue; | ||
373 | } | ||
374 | ret = register_ip_vs_app_inc(app, app->protocol, ports[i]); | 368 | ret = register_ip_vs_app_inc(app, app->protocol, ports[i]); |
375 | if (ret) | 369 | if (ret) |
376 | break; | 370 | break; |