Fixed whitespace in all files (no tabs)
[senf.git] / Socket / INetAddressing.ct
index 8e682b0..af317ba 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007 
+// Copyright (C) 2007
 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
 //     Stefan Bund <g0dil@berlios.de>
@@ -37,9 +37,9 @@ prefix_ senf::INet6Address::INet6Address(Range const & range)
     unsigned char * p (&addr_.s6_addr[0]);
     unsigned char * p_end (p+sizeof(addr_.s6_addr));
     for (; p!=p_end && i!=i_end; ++p, ++i)
-       *p = *i;
+        *p = *i;
     if (p!=p_end || i!=i_end)
-       throw InvalidINetAddressException();
+        throw InvalidINetAddressException();
 }
 
 ///////////////////////////////ct.e////////////////////////////////////////
@@ -50,5 +50,6 @@ prefix_ senf::INet6Address::INet6Address(Range const & range)
 // mode: c++
 // fill-column: 100
 // c-file-style: "senf"
+// indent-tabs-mode: nil
 // ispell-local-dictionary: "american"
 // End: