BIND 10 trac2853, updated. bd3f52daf52aeeb006cc7ac420f11bdc9cd284ed [2853] Remove unused catch argument name
BIND 10 source code commits
bind10-changes at lists.isc.org
Wed Jun 12 13:15:42 UTC 2013
The branch, trac2853 has been updated
via bd3f52daf52aeeb006cc7ac420f11bdc9cd284ed (commit)
from 157d04befe4e1b7a3a9d3fe34d2a39af5709ef1a (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 bd3f52daf52aeeb006cc7ac420f11bdc9cd284ed
Author: Mukund Sivaraman <muks at isc.org>
Date: Wed Jun 12 18:45:09 2013 +0530
[2853] Remove unused catch argument name
The compiler should have caught this, but it didn't.
-----------------------------------------------------------------------
Summary of changes:
.../isc/datasrc/configurableclientlist_python.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
-----------------------------------------------------------------------
diff --git a/src/lib/python/isc/datasrc/configurableclientlist_python.cc b/src/lib/python/isc/datasrc/configurableclientlist_python.cc
index 170e237..9ccdc06 100644
--- a/src/lib/python/isc/datasrc/configurableclientlist_python.cc
+++ b/src/lib/python/isc/datasrc/configurableclientlist_python.cc
@@ -214,7 +214,7 @@ ConfigurableClientList_getStatus(PyObject* po_self, PyObject*) {
try {
segment_type = Py_BuildValue(
"s", status[i].getSegmentType().c_str());
- } catch (const isc::InvalidOperation& e) {
+ } catch (const isc::InvalidOperation&) {
Py_INCREF(Py_None);
segment_type = Py_None;
}
More information about the bind10-changes
mailing list