--- embedaddon/php/ext/xmlrpc/libxmlrpc/xmlrpc.c 2012/05/29 12:34:45 1.1.1.2 +++ embedaddon/php/ext/xmlrpc/libxmlrpc/xmlrpc.c 2013/07/22 01:32:10 1.1.1.3 @@ -31,7 +31,7 @@ */ -static const char rcsid[] = "#(@) $Id: xmlrpc.c,v 1.1.1.2 2012/05/29 12:34:45 misho Exp $"; +static const char rcsid[] = "#(@) $Id: xmlrpc.c,v 1.1.1.3 2013/07/22 01:32:10 misho Exp $"; /****h* ABOUT/xmlrpc @@ -43,8 +43,8 @@ static const char rcsid[] = "#(@) $Id: xmlrpc.c,v 1.1. * 9/1999 - 10/2000 * HISTORY * $Log: xmlrpc.c,v $ - * Revision 1.1.1.2 2012/05/29 12:34:45 misho - * php 5.4.3+patches + * Revision 1.1.1.3 2013/07/22 01:32:10 misho + * 5.4.17 * * Revision 1.8.4.3.2.1 2008/09/10 00:07:44 felipe * MFH: @@ -900,7 +900,7 @@ const char *XMLRPC_SetValueID_Case(XMLRPC_VALUE value, (len > 0) ? simplestring_addn(&value->id, id, len) : simplestring_add(&value->id, id); - /* upper or lower case string in place if required. could be a seperate func. */ + /* upper or lower case string in place if required. could be a separate func. */ if(id_case == xmlrpc_case_lower || id_case == xmlrpc_case_upper) { int i; for(i = 0; i < value->id.len; i++) { @@ -1612,7 +1612,7 @@ XMLRPC_VALUE XMLRPC_CopyValue(XMLRPC_VALUE value) { * XMLRPC_CopyValue () * NOTES * Use this when function when you need to modify the contents of - * the copied value seperately from the original. + * the copied value separately from the original. * * this function is recursive, thus the value and all of its children * (if any) will be duplicated.