From bc85385f138446d9b9ccd0579b4003e9d24b7561 Mon Sep 17 00:00:00 2001 From: Cary R Date: Wed, 8 Aug 2012 12:21:24 -0700 Subject: [PATCH] Change duplicate msb_ to be lsb_ --- nettypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nettypes.h b/nettypes.h index 632a63e41..d532c24e9 100644 --- a/nettypes.h +++ b/nettypes.h @@ -48,7 +48,7 @@ class netrange_t { { msb_ = that.msb_; lsb_ = that.lsb_; return *this; } inline bool defined() const - { return msb_!=LONG_MAX || msb_!= LONG_MAX; } + { return msb_!=LONG_MAX || lsb_!= LONG_MAX; } inline unsigned long width()const { if (!defined()) return 0;