BIND 10 master, updated. 2f4433fb15900481e4fb976a93692e68084c3925 [master] added missing break in case blocks. this should fix the cppcheck error. okayed on jabber.
BIND 10 source code commits
bind10-changes at lists.isc.org
Tue Dec 13 18:41:51 UTC 2011
The branch, master has been updated
via 2f4433fb15900481e4fb976a93692e68084c3925 (commit)
from 497d53517cb412c6d5b90779bd06070e58f90df1 (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 2f4433fb15900481e4fb976a93692e68084c3925
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Tue Dec 13 10:41:23 2011 -0800
[master] added missing break in case blocks. this should fix the cppcheck error.
okayed on jabber.
-----------------------------------------------------------------------
Summary of changes:
src/lib/resolve/recursive_query.cc | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/resolve/recursive_query.cc b/src/lib/resolve/recursive_query.cc
index 1855f7a..930b593 100644
--- a/src/lib/resolve/recursive_query.cc
+++ b/src/lib/resolve/recursive_query.cc
@@ -633,12 +633,15 @@ private:
case ResponseClassifier::NOTSINGLE:
message_id = RESLIB_NOTSINGLE_RESPONSE;
+ break;
case ResponseClassifier::OPCODE:
message_id = RESLIB_OPCODE_RESPONSE;
+ break;
default:
message_id = RESLIB_ERROR_RESPONSE;
+ break;
}
LOG_DEBUG(logger, RESLIB_DBG_RESULTS, message_id).
arg(questionText(question_));
More information about the bind10-changes
mailing list