Socket: some minor documentation (typo) fixes
[senf.git] / senf / Socket / Protocols / Raw / MACAddress.ct
index e0b4ef3..bea4f84 100644 (file)
@@ -26,7 +26,7 @@
 //#include "MACAddress.ih"
 
 // Custom includes
-#include "../../../config.hh"
+#include <senf/config.hh>
 
 #define prefix_
 ///////////////////////////////ct.p////////////////////////////////////////
@@ -38,7 +38,7 @@ template <class InputIterator>
 prefix_ senf::MACAddress::MACAddress senf::MACAddress::from_data(InputIterator i)
 {
     MACAddress mac (senf::noinit);
-    SENF_copy_n(i, 6, mac.begin());
+    senf::config::copy_n(i, 6, mac.begin());
     return mac;
 }