]> granicus.if.org Git - php/commitdiff
code related typo fixes
authorVeres Lajos <vlajos@gmail.com>
Tue, 23 Jul 2013 23:54:16 +0000 (00:54 +0100)
committerStanislav Malyshev <stas@php.net>
Sun, 18 Aug 2013 20:46:32 +0000 (13:46 -0700)
ext/odbc/config.m4
ext/standard/basic_functions.c
ext/standard/math.c
ext/xml/compat.c
ext/xml/expat_compat.h

index 14ec97bf364b947444ac5888da7ecff71f8313c1..b463d34b0be68e0ffba3149f42044c9f09295cce 100644 (file)
@@ -359,7 +359,7 @@ PHP_ARG_WITH(custom-odbc,,
     ODBC_LIBS=$CUSTOM_ODBC_LIBS
     ODBC_TYPE=custom-odbc
     AC_DEFINE(HAVE_CODBC,1,[ ])
-    AC_MSG_RESULT([$ext_ouput])
+    AC_MSG_RESULT([$ext_output])
   fi
 fi
 
index 9c91404eff05fe94df535766df71da06be2dab3a..eca7d903680fa814702861f687aff055c8b895ac 100644 (file)
@@ -1789,8 +1789,8 @@ ZEND_END_ARG_INFO()
 ZEND_BEGIN_ARG_INFO_EX(arginfo_number_format, 0, 0, 1)
        ZEND_ARG_INFO(0, number)
        ZEND_ARG_INFO(0, num_decimal_places)
-       ZEND_ARG_INFO(0, dec_seperator)
-       ZEND_ARG_INFO(0, thousands_seperator)
+       ZEND_ARG_INFO(0, dec_separator)
+       ZEND_ARG_INFO(0, thousands_separator)
 ZEND_END_ARG_INFO()
 
 ZEND_BEGIN_ARG_INFO(arginfo_fmod, 0)
index be2d655263f131d2612f876ce19f98aec0c4afec..f6b3d5406ebe4de1779e95e36be7ba4b6ffd8784 100644 (file)
@@ -1226,7 +1226,7 @@ PHPAPI char *_php_math_number_format_ex(double d, int dec, char *dec_point,
 }
 /* }}} */
 
-/* {{{ proto string number_format(float number [, int num_decimal_places [, string dec_seperator, string thousands_seperator]])
+/* {{{ proto string number_format(float number [, int num_decimal_places [, string dec_separator, string thousands_separator]])
    Formats a number with grouped thousands */
 PHP_FUNCTION(number_format)
 {
index fbebb635eebf0710ed104aa62de9abf45d72a1ee..902365e6612f991fdbe23f4c765a1b81ef74138e 100644 (file)
@@ -39,7 +39,7 @@ _qualify_namespace(XML_Parser parser, const xmlChar *name, const xmlChar *URI, x
        if (URI) {
                        /* Use libxml functions otherwise its memory deallocation is screwed up */
                        *qualified = xmlStrdup(URI);
-                       *qualified = xmlStrncat(*qualified, parser->_ns_seperator, 1);
+                       *qualified = xmlStrncat(*qualified, parser->_ns_separator, 1);
                        *qualified = xmlStrncat(*qualified, name, xmlStrlen(name));
        } else {
                *qualified = xmlStrdup(name);
@@ -469,7 +469,7 @@ XML_ParserCreate_MM(const XML_Char *encoding, const XML_Memory_Handling_Suite *m
        parser = (XML_Parser) emalloc(sizeof(struct _XML_Parser));
        memset(parser, 0, sizeof(struct _XML_Parser));
        parser->use_namespace = 0;
-       parser->_ns_seperator = NULL;
+       parser->_ns_separator = NULL;
 
        parser->parser = xmlCreatePushParserCtxt((xmlSAXHandlerPtr) &php_xml_compat_handlers, (void *) parser, NULL, 0, NULL);
        if (parser->parser == NULL) {
@@ -491,7 +491,7 @@ XML_ParserCreate_MM(const XML_Char *encoding, const XML_Memory_Handling_Suite *m
        if (sep != NULL) {
                parser->use_namespace = 1;
                parser->parser->sax2 = 1;
-               parser->_ns_seperator = xmlStrdup(sep);
+               parser->_ns_separator = xmlStrdup(sep);
        } else {
                /* Reset flag as XML_SAX2_MAGIC is needed for xmlCreatePushParserCtxt 
                so must be set in the handlers */
@@ -770,8 +770,8 @@ PHPAPI void
 XML_ParserFree(XML_Parser parser)
 {
        if (parser->use_namespace) {
-               if (parser->_ns_seperator) {
-                       xmlFree(parser->_ns_seperator);
+               if (parser->_ns_separator) {
+                       xmlFree(parser->_ns_separator);
                }
        }
        if (parser->parser->myDoc) {
index 424785f566fdb80d6b484eaa3b3b137702aaa079..1c94e45fd3e9f76c39ebcc7996a03a99b9ab15a5 100644 (file)
@@ -38,6 +38,9 @@
 #include <libxml/tree.h>
 #include <libxml/hash.h>
 
+/* For compatibility with the misspelled version. */
+#define _ns_seperator _ns_separator
+
 typedef xmlChar XML_Char;
 
 typedef void (*XML_StartElementHandler)(void *, const XML_Char *, const XML_Char **);
@@ -61,7 +64,7 @@ typedef struct _XML_Memory_Handling_Suite {
 typedef struct _XML_Parser {
        int use_namespace;
 
-       xmlChar *_ns_seperator;
+       xmlChar *_ns_separator;
 
        void *user;
        xmlParserCtxtPtr parser;