Just testing things, based off of http-example-wnc

Dependencies:   easy-connect mbed-http

Fork of http-example-wnc by Avnet

Revision:
7:5d32909f77de
Parent:
5:42f713b19337
Child:
14:3c173847e681
--- a/source/main-http.cpp	Thu Feb 23 14:13:01 2017 +0100
+++ b/source/main-http.cpp	Fri Feb 24 11:21:24 2017 +0100
@@ -13,7 +13,7 @@
 
     printf("Headers:\n");
     for (size_t ix = 0; ix < res->get_headers_length(); ix++) {
-        printf("\t%s: %s\n", res->get_headers_fields()[ix].c_str(), res->get_headers_values()[ix].c_str());
+        printf("\t%s: %s\n", res->get_headers_fields()[ix]->c_str(), res->get_headers_values()[ix]->c_str());
     }
     printf("\nBody (%d bytes):\n\n%s\n", res->get_body_length(), res->get_body_as_string().c_str());
 }