Browse Source

[master] trivial cleanup: removed redundant parentheses.
noticed in previous review, but forgot to mention that.
very trivial, so decided to push it directly.

JINMEI Tatuya 14 years ago
parent
commit
2bb4420b73
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/bin/resolver/response_scrubber.cc

+ 1 - 1
src/bin/resolver/response_scrubber.cc

@@ -79,7 +79,7 @@ ResponseScrubber::scrubSection(Message& message,
             // given relationship with the QNAME of this RRset
             bool match = false;
             for (vector<const Name*>::const_iterator n = names.begin();
-                ((n != names.end())); ++n) {
+                 n != names.end(); ++n) {
                 NameComparisonResult result = (*i)->getName().compare(**n);
                 NameComparisonResult::NameRelation relationship =
                     result.getRelation();