Bug 1053067 - Correct misspellings of "version" in WebRTC. r=jesup
--- a/media/webrtc/signaling/src/sipcc/core/ccapp/ccprovider.c
+++ b/media/webrtc/signaling/src/sipcc/core/ccapp/ccprovider.c
@@ -2046,17 +2046,17 @@ void ccp_handler(void* msg, int type) {
if ( featUpd->featureID == DEVICE_REG_STATE &&
featUpd->update.ccFeatUpd.data.line_info.info == CC_REGISTERED &&
state != (int) CC_INSERVICE )
{
cc_uint32_t major_ver=0, minor_ver=0,addtnl_ver=0;
char name[CC_MAX_LEN_REQ_SUPP_PARAM_CISCO_SISTAG]={0};
platGetSISProtocolVer( &major_ver, &minor_ver, &addtnl_ver, name);
- CCAPP_DEBUG(DEB_F_PREFIX"The SIS verion is: %s, sis ver: %d.%d.%d", DEB_F_PREFIX_ARGS(SIP_CC_PROV, fname), name, major_ver, minor_ver, addtnl_ver);
+ CCAPP_DEBUG(DEB_F_PREFIX"The SIS version is: %s, sis ver: %d.%d.%d", DEB_F_PREFIX_ARGS(SIP_CC_PROV, fname), name, major_ver, minor_ver, addtnl_ver);
if(!strncmp(name, REQ_SUPP_PARAM_CISCO_CME_SISTAG, strlen(REQ_SUPP_PARAM_CISCO_CME_SISTAG))){
CCAPP_DEBUG(DEB_F_PREFIX"This is CUCME mode.", DEB_F_PREFIX_ARGS(SIP_CC_PROV, fname));
} else if(!strncmp(name, REQ_SUPP_PARAM_CISCO_SISTAG, strlen(REQ_SUPP_PARAM_CISCO_SISTAG))){
CCAPP_DEBUG(DEB_F_PREFIX"This is CUCM mode.",DEB_F_PREFIX_ARGS(SIP_CC_PROV, fname));
} else {
CCAPP_DEBUG(DEB_F_PREFIX"This is unknown mode.",DEB_F_PREFIX_ARGS(SIP_CC_PROV, fname));
}
ccapp_set_state(CC_INSERVICE);
--- a/media/webrtc/signaling/src/sipcc/core/src-common/sll_lite.c
+++ b/media/webrtc/signaling/src/sipcc/core/src-common/sll_lite.c
@@ -14,17 +14,17 @@
*
* 2) No application call back for node search/find.
*
* 3) The use must include the node structure as the first
* field of the user's data structure to linked. This allows
* user to retrives the node and at the same time access to
* the data associated with the node.
*
- * 4) Lite verion is higher risk because the caller also has
+ * 4) Lite version is higher risk because the caller also has
* the defition of the list and node structures. Use it
* at your own risk.
*
* 5) There is no protection for mutual exclusive access by
* multiple threads or from interrupt context. The caller
* has to provide the protection if needed.
*/