BIND 10 trac550, updated. c5dfa657c2431f3daea2dcc49741f96383f0d18d [trac550] make sure the user defined flag bit is the MSB.
BIND 10 source code commits
bind10-changes at lists.isc.org
Wed Feb 9 19:51:59 UTC 2011
The branch, trac550 has been updated
via c5dfa657c2431f3daea2dcc49741f96383f0d18d (commit)
from 1d018cd8a62fdf430f5322db023badc030cee6ee (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit c5dfa657c2431f3daea2dcc49741f96383f0d18d
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Wed Feb 9 11:49:38 2011 -0800
[trac550] make sure the user defined flag bit is the MSB.
the actual bit position isn't a big deal right now, but the intent would be
a bit clearer than an odd intermediate position (and, in fact, using the
MSB was the original intent; the previous value was a typo)
-----------------------------------------------------------------------
Summary of changes:
src/lib/datasrc/rbtree.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/datasrc/rbtree.h b/src/lib/datasrc/rbtree.h
index bba90b9..c55831b 100644
--- a/src/lib/datasrc/rbtree.h
+++ b/src/lib/datasrc/rbtree.h
@@ -121,7 +121,7 @@ public:
/// set to on by the \c setFlag() method.
enum Flags {
FLAG_CALLBACK = 1, ///< Callback enabled. See \ref callback
- FLAG_USER1 = 0x8000000U ///< Application specific flag
+ FLAG_USER1 = 0x80000000U ///< Application specific flag
};
private:
// Some flag values are expected to be used for internal purposes
More information about the bind10-changes
mailing list