[svn] commit: r1948 - /branches/trac185/src/bin/xfrin/xfrin.py.in
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu May 27 13:10:33 UTC 2010
Author: zhanglikun
Date: Thu May 27 13:10:33 2010
New Revision: 1948
Log:
Remove duplicated function invokation
Modified:
branches/trac185/src/bin/xfrin/xfrin.py.in
Modified: branches/trac185/src/bin/xfrin/xfrin.py.in
==============================================================================
--- branches/trac185/src/bin/xfrin/xfrin.py.in (original)
+++ branches/trac185/src/bin/xfrin/xfrin.py.in Thu May 27 13:10:33 2010
@@ -228,7 +228,7 @@
# cause interoperability trouble with stricter checks.
msg_rcode = msg.get_rcode()
- if msg.get_rcode() != rcode.NOERROR():
+ if msg_rcode != rcode.NOERROR():
raise XfrinException('error response: %s' % msg_rcode.to_text())
if not msg.get_header_flag(message_flag.QR()):
More information about the bind10-changes
mailing list