X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Socket%2FINetAddressing.ct;h=876addbfbd1dfbf1cdbf540f7c37ab8eff3baf8a;hb=1d6a05a5ebfab82985d40e694f8257397ca5036c;hp=8e682b0904b6652ca33168d9c11fb6e2e6b9ad60;hpb=33157146abaca548e145c577a0840cd1bd427789;p=senf.git diff --git a/Socket/INetAddressing.ct b/Socket/INetAddressing.ct index 8e682b0..876addb 100644 --- a/Socket/INetAddressing.ct +++ b/Socket/INetAddressing.ct @@ -1,4 +1,4 @@ -// Copyright (C) 2007 +// Copyright (C) 2007 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) // Kompetenzzentrum fuer Satelitenkommunikation (SatCom) // Stefan Bund @@ -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,7 @@ prefix_ senf::INet6Address::INet6Address(Range const & range) // mode: c++ // fill-column: 100 // c-file-style: "senf" +// indent-tabs-mode: nil // ispell-local-dictionary: "american" +// compile-command: "scons -u test" // End: