Internal: Use C struct ndn_Blob where possible. Make ndn::Blob work with ndn_Blob.
diff --git a/ndn-cpp/name.cpp b/ndn-cpp/name.cpp
index 40dbab5..d8174e6 100644
--- a/ndn-cpp/name.cpp
+++ b/ndn-cpp/name.cpp
@@ -221,7 +221,7 @@
 {
   clear();
   for (size_t i = 0; i < nameStruct.nComponents; ++i)
-    addComponent(nameStruct.components[i].value, nameStruct.components[i].valueLength);  
+    addComponent(nameStruct.components[i].value.value, nameStruct.components[i].value.length);  
 }
 
 Name&