mbed Connector Interface simplification API on top of mbed-client

Fork of mbedConnectorInterfaceV3 by Doug Anson

NOTE:

This repo has been replaced with https://github.com/ARMmbed/mbedConnectorInterface. No further updates will occur with this repo. Please use the github repo instead. Thanks!

Revision:
50:4f04727cbf91
Parent:
49:c603a22495bb
Child:
52:8abdfa69b511
--- a/source/OptionsBuilder.cpp	Thu Jun 23 22:26:15 2016 +0000
+++ b/source/OptionsBuilder.cpp	Fri Jun 24 02:07:53 2016 +0000
@@ -50,7 +50,7 @@
     this->m_reg_update_period 		= REG_UPDATE_PERIOD_MS;
     this->m_lifetime  				= REG_LIFETIME_SEC;
     this->m_connector_url  		 	= string(CONNECTOR_URL);
-    this->m_server_cert				- NULL;
+    this->m_server_cert				= NULL;
     this->m_server_cert_length		= 0;
     this->m_client_cert 			= NULL;
     this->m_client_cert_length		= 0;
@@ -72,7 +72,7 @@
     this->m_reg_update_period = ob.m_reg_update_period;
 	this->m_lifetime = ob.m_lifetime; 
 	this->m_connector_url  = ob.m_connector_url;  
-	this->m_server_cert	- ob.m_server_cert;
+	this->m_server_cert	= ob.m_server_cert;
     this->m_server_cert_length = ob.m_server_cert_length;
     this->m_client_cert = ob.m_client_cert;
     this->m_client_cert_length = ob.m_client_cert_length;