Parcourir la source

removed redundant white spaces at EOLs

git-svn-id: svn://bind10.isc.org/svn/bind10/branches/trac372@3223 e5f2f494-b856-4b98-b285-d166d9295462
JINMEI Tatuya il y a 14 ans
Parent
commit
625cf7a1f5

+ 1 - 1
src/lib/dns/rdata/any_255/tsig_250.cc

@@ -440,7 +440,7 @@ TSIG::compare(const Rdata& other) const {
     if (impl_->error_ != other_tsig.impl_->error_) {
         return (impl_->error_ < other_tsig.impl_->error_ ? -1 : 1);
     }
-    return (vectorComp(impl_->other_data_, other_tsig.impl_->other_data_)); 
+    return (vectorComp(impl_->other_data_, other_tsig.impl_->other_data_));
 }
 
 const Name&

+ 2 - 2
src/lib/dns/rdata/any_255/tsig_250.h

@@ -155,6 +155,6 @@ private:
 // END_ISC_NAMESPACE
 // END_HEADER_GUARD
 
-// Local Variables: 
+// Local Variables:
 // mode: c++
-// End: 
+// End:

+ 1 - 1
src/lib/dns/tests/rdata_tsig_unittest.cc

@@ -353,7 +353,7 @@ TEST_F(Rdata_TSIG_Test, compare) {
     compare_set.push_back(any::TSIG("example 1 600 3 FAKE 16021 1 3 FAKE"));
 
     EXPECT_EQ(0, compare_set[0].compare(
-                  any::TSIG("A.EXAMPLE 0 300 0 16020 0 0"))); 
+                  any::TSIG("A.EXAMPLE 0 300 0 16020 0 0")));
 
     vector<any::TSIG>::const_iterator it;
     vector<any::TSIG>::const_iterator it_end = compare_set.end();