Commit:    ed2e84e2394b97f710710c6db0366d739422b0fe
Author:    Veres Lajos <vla...@gmail.com>         Mon, 22 Apr 2013 13:41:27 
+0100
Committer: Stanislav Malyshev <s...@php.net>      Mon, 10 Jun 2013 13:36:03 
-0700
Parents:   7a1e670d762accae231764c83a1ce0d379ef5cad
Branches:  PHP-5.4 PHP-5.5 master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=ed2e84e2394b97f710710c6db0366d739422b0fe

Log:
typo fixes (accommodate, parameter)

Changed paths:
  M  README.PARAMETER_PARSING_API
  M  ext/pdo/pdo_sql_parser.c
  M  ext/pdo/pdo_sql_parser.re
  M  ext/soap/php_sdl.c
  M  ext/sqlite3/libsqlite/sqlite3.c
  M  ext/sqlite3/sqlite3.c
  M  ext/standard/user_filters.c
  M  sapi/isapi/stresstest/stresstest.cpp
  M  win32/glob.c


Diff:
diff --git a/README.PARAMETER_PARSING_API b/README.PARAMETER_PARSING_API
index 927e481..4579340 100644
--- a/README.PARAMETER_PARSING_API
+++ b/README.PARAMETER_PARSING_API
@@ -32,7 +32,7 @@ resources cannot be auto-converted.
 Type specifiers
 ---------------
  The following list shows the type specifier, its meaning and the parameter 
- types that need to be passed by address. All passed paramaters are set
+ types that need to be passed by address. All passed parameters are set
  if the PHP parameter is non optional and untouched if optional and the 
  parameter is not present. The only exception is O where the zend_class_entry*
  has to be provided on input and is used to verify the PHP parameter is an 
diff --git a/ext/pdo/pdo_sql_parser.c b/ext/pdo/pdo_sql_parser.c
index 4219762..4c52350 100644
--- a/ext/pdo/pdo_sql_parser.c
+++ b/ext/pdo/pdo_sql_parser.c
@@ -761,9 +761,9 @@ int old_pdo_parse_params(pdo_stmt_t *stmt, char *inquery, 
int inquery_len, char
                while (SUCCESS == zend_hash_get_current_data(params, 
(void**)&param)) {
                        if(param->parameter) {
                                convert_to_string(param->parameter);
-                               /* accomodate a string that needs to be fully 
quoted
+                               /* accommodate a string that needs to be fully 
quoted
                    bind placeholders are at least 2 characters, so
-                   the accomodate their own "'s
+                   the accommodate their own "'s
                 */
                                newbuffer_len += padding * 
Z_STRLEN_P(param->parameter);
                        }
diff --git a/ext/pdo/pdo_sql_parser.re b/ext/pdo/pdo_sql_parser.re
index d4272d6..80e3b4f 100644
--- a/ext/pdo/pdo_sql_parser.re
+++ b/ext/pdo/pdo_sql_parser.re
@@ -408,9 +408,9 @@ int old_pdo_parse_params(pdo_stmt_t *stmt, char *inquery, 
int inquery_len, char
                while (SUCCESS == zend_hash_get_current_data(params, 
(void**)&param)) {
                        if(param->parameter) {
                                convert_to_string(param->parameter);
-                               /* accomodate a string that needs to be fully 
quoted
+                               /* accommodate a string that needs to be fully 
quoted
                    bind placeholders are at least 2 characters, so
-                   the accomodate their own "'s
+                   the accommodate their own "'s
                 */
                                newbuffer_len += padding * 
Z_STRLEN_P(param->parameter);
                        }
diff --git a/ext/soap/php_sdl.c b/ext/soap/php_sdl.c
index 33e137c..0ac4c2e 100644
--- a/ext/soap/php_sdl.c
+++ b/ext/soap/php_sdl.c
@@ -40,8 +40,8 @@ static void delete_binding(void *binding);
 static void delete_binding_persistent(void *binding);
 static void delete_function(void *function);
 static void delete_function_persistent(void *function);
-static void delete_parameter(void *paramater);
-static void delete_parameter_persistent(void *paramater);
+static void delete_parameter(void *parameter);
+static void delete_parameter_persistent(void *parameter);
 static void delete_header(void *header);
 static void delete_header_persistent(void *header);
 static void delete_document(void *doc_ptr);
diff --git a/ext/sqlite3/libsqlite/sqlite3.c b/ext/sqlite3/libsqlite/sqlite3.c
index d96367e..cdcb48b 100644
--- a/ext/sqlite3/libsqlite/sqlite3.c
+++ b/ext/sqlite3/libsqlite/sqlite3.c
@@ -93617,7 +93617,7 @@ SQLITE_PRIVATE int sqlite3IndexedByLookup(Parse 
*pParse, struct SrcList_item *pF
 **         without worrying about messing up the presistent representation
 **         of the view.
 **
-**    (3)  Add terms to the WHERE clause to accomodate the NATURAL keyword
+**    (3)  Add terms to the WHERE clause to accommodate the NATURAL keyword
 **         on joins and the ON and USING clause of joins.
 **
 **    (4)  Scan the list of columns in the result set (pEList) looking
@@ -96115,7 +96115,7 @@ SQLITE_PRIVATE void sqlite3CodeRowTriggerDirect(
 /*
 ** This is called to code the required FOR EACH ROW triggers for an operation
 ** on table pTab. The operation to code triggers for (INSERT, UPDATE or DELETE)
-** is given by the op paramater. The tr_tm parameter determines whether the
+** is given by the op parameter. The tr_tm parameter determines whether the
 ** BEFORE or AFTER triggers are coded. If the operation is an UPDATE, then
 ** parameter pChanges is passed the list of columns being modified.
 **
diff --git a/ext/sqlite3/sqlite3.c b/ext/sqlite3/sqlite3.c
index df449d7..2aef041 100644
--- a/ext/sqlite3/sqlite3.c
+++ b/ext/sqlite3/sqlite3.c
@@ -1409,7 +1409,7 @@ static int register_bound_parameter_to_sqlite(struct 
php_sqlite3_bound_param *pa
 /* }}} */
 
 /* {{{ proto bool SQLite3Stmt::bindParam(int parameter_number, mixed parameter 
[, int type])
-   Bind Paramater to a stmt variable. */
+   Bind Parameter to a stmt variable. */
 PHP_METHOD(sqlite3stmt, bindParam)
 {
        php_sqlite3_stmt *stmt_obj;
diff --git a/ext/standard/user_filters.c b/ext/standard/user_filters.c
index b009e67..b44be12 100644
--- a/ext/standard/user_filters.c
+++ b/ext/standard/user_filters.c
@@ -474,7 +474,7 @@ static void php_stream_bucket_attach(int append, 
INTERNAL_FUNCTION_PARAMETERS)
        } else {
                php_stream_bucket_prepend(brigade, bucket TSRMLS_CC);
        }
-       /* This is a hack necessary to accomodate situations where bucket is 
appended to the stream
+       /* This is a hack necessary to accommodate situations where bucket is 
appended to the stream
         * multiple times. See bug35916.phpt for reference.
         */
        if (bucket->refcount == 1) {
diff --git a/sapi/isapi/stresstest/stresstest.cpp 
b/sapi/isapi/stresstest/stresstest.cpp
index 97824e6..9a5964a 100644
--- a/sapi/isapi/stresstest/stresstest.cpp
+++ b/sapi/isapi/stresstest/stresstest.cpp
@@ -796,7 +796,7 @@ BOOL WINAPI ServerSupportFunction(HCONN hConn, DWORD 
dwHSERequest,
 
        switch(dwHSERequest) {
                case (HSE_REQ_SEND_RESPONSE_HEADER) :
-                       lpszRespBuf = (char *)xmalloc(*lpdwSize);//+ 
80);//accomodate our header
+                       lpszRespBuf = (char *)xmalloc(*lpdwSize);//+ 
80);//accommodate our header
                        if (!lpszRespBuf)
                                return FALSE;
                        wsprintf(lpszRespBuf,"%s",
diff --git a/win32/glob.c b/win32/glob.c
index a197f3b..1aeac78 100644
--- a/win32/glob.c
+++ b/win32/glob.c
@@ -689,7 +689,7 @@ glob3(pathbuf, pathbuf_last, pathend, pathend_last, 
pattern, pattern_last,
 
 
 /*
- * Extend the gl_pathv member of a glob_t structure to accomodate a new item,
+ * Extend the gl_pathv member of a glob_t structure to accommodate a new item,
  * add the new item, and update gl_pathc.
  *
  * This assumes the BSD realloc, which only copies the block when its size


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to