Parcourir la source

[master] Untabify code

Mukund Sivaraman il y a 12 ans
Parent
commit
932c5ac502
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  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&