diff options
author | Denys Vlasenko | 2009-10-04 01:13:35 +0200 |
---|---|---|
committer | Denys Vlasenko | 2009-10-04 01:13:35 +0200 |
commit | fd2dc53ba49ed2bdb077a45f4793d397fa92d2da (patch) | |
tree | 2d9653606439b6e5936ae4d478fd22befd47c4eb /networking/libiproute | |
parent | 1d63f046d042bff32501ed0ef503dd77b9ca9b0a (diff) | |
download | busybox-fd2dc53ba49ed2bdb077a45f4793d397fa92d2da.zip busybox-fd2dc53ba49ed2bdb077a45f4793d397fa92d2da.tar.gz |
remove useless (unsigned >= 0) comparison
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/libiproute')
-rw-r--r-- | networking/libiproute/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/libiproute/utils.c b/networking/libiproute/utils.c index 5f09717..85034c0 100644 --- a/networking/libiproute/utils.c +++ b/networking/libiproute/utils.c @@ -136,7 +136,7 @@ static int get_prefix_1(inet_prefix *dst, char *arg, int family) if (!(host & (host + 1))) { for (plen = 0; mask; mask <<= 1) ++plen; - if (plen >= 0 && plen <= dst->bitlen) { + if (plen <= dst->bitlen) { dst->bitlen = plen; /* dst->flags |= PREFIXLEN_SPECIFIED; */ } else |