Browse Source

[master] Untabify code

Mukund Sivaraman 12 years ago
parent
commit
932c5ac502
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/lib/dns/rrset.cc

+ 2 - 2
src/lib/dns/rrset.cc

@@ -143,8 +143,8 @@ AbstractRRset::isSameKind(const AbstractRRset& other) const {
   // names late in the list too, as these are expensive. So we compare
   // types first, names second and classes last.
   return (getType() == other.getType() &&
-	  getName() == other.getName() &&
-	  getClass() == other.getClass());
+          getName() == other.getName() &&
+          getClass() == other.getClass());
 }
 
 ostream&