geissert                                 Sat, 01 May 2010 18:27:42 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=298840

Log:
Fix typos s/connnection/connection

Changed paths:
    U   php/php-src/branches/PHP_5_2/ext/pgsql/pgsql.c
    U   php/php-src/branches/PHP_5_3/ext/pgsql/pgsql.c
    U   php/php-src/trunk/ext/pgsql/pgsql.c

Modified: php/php-src/branches/PHP_5_2/ext/pgsql/pgsql.c
===================================================================
--- php/php-src/branches/PHP_5_2/ext/pgsql/pgsql.c      2010-05-01 18:20:30 UTC 
(rev 298839)
+++ php/php-src/branches/PHP_5_2/ext/pgsql/pgsql.c      2010-05-01 18:27:42 UTC 
(rev 298840)
@@ -3855,7 +3855,7 @@
 /* }}} */
 #endif

-/* {{{ proto int pg_connection_status(resource connnection)
+/* {{{ proto int pg_connection_status(resource connection)
    Get connection status */
 PHP_FUNCTION(pg_connection_status)
 {
@@ -3876,7 +3876,7 @@
 /* }}} */

 #if HAVE_PGTRANSACTIONSTATUS
-/* {{{ proto int pg_transaction_status(resource connnection)
+/* {{{ proto int pg_transaction_status(resource connection)
    Get transaction status */
 PHP_FUNCTION(pg_transaction_status)
 {

Modified: php/php-src/branches/PHP_5_3/ext/pgsql/pgsql.c
===================================================================
--- php/php-src/branches/PHP_5_3/ext/pgsql/pgsql.c      2010-05-01 18:20:30 UTC 
(rev 298839)
+++ php/php-src/branches/PHP_5_3/ext/pgsql/pgsql.c      2010-05-01 18:27:42 UTC 
(rev 298840)
@@ -434,12 +434,12 @@
 #endif

 ZEND_BEGIN_ARG_INFO_EX(arginfo_pg_connection_status, 0, 0, 1)
-       ZEND_ARG_INFO(0, connnection)
+       ZEND_ARG_INFO(0, connection)
 ZEND_END_ARG_INFO()

 #if HAVE_PGTRANSACTIONSTATUS
 ZEND_BEGIN_ARG_INFO_EX(arginfo_pg_transaction_status, 0, 0, 1)
-       ZEND_ARG_INFO(0, connnection)
+       ZEND_ARG_INFO(0, connection)
 ZEND_END_ARG_INFO()
 #endif

@@ -4278,7 +4278,7 @@
 /* }}} */
 #endif

-/* {{{ proto int pg_connection_status(resource connnection)
+/* {{{ proto int pg_connection_status(resource connection)
    Get connection status */
 PHP_FUNCTION(pg_connection_status)
 {
@@ -4299,7 +4299,7 @@
 /* }}} */

 #if HAVE_PGTRANSACTIONSTATUS
-/* {{{ proto int pg_transaction_status(resource connnection)
+/* {{{ proto int pg_transaction_status(resource connection)
    Get transaction status */
 PHP_FUNCTION(pg_transaction_status)
 {

Modified: php/php-src/trunk/ext/pgsql/pgsql.c
===================================================================
--- php/php-src/trunk/ext/pgsql/pgsql.c 2010-05-01 18:20:30 UTC (rev 298839)
+++ php/php-src/trunk/ext/pgsql/pgsql.c 2010-05-01 18:27:42 UTC (rev 298840)
@@ -434,12 +434,12 @@
 #endif

 ZEND_BEGIN_ARG_INFO_EX(arginfo_pg_connection_status, 0, 0, 1)
-       ZEND_ARG_INFO(0, connnection)
+       ZEND_ARG_INFO(0, connection)
 ZEND_END_ARG_INFO()

 #if HAVE_PGTRANSACTIONSTATUS
 ZEND_BEGIN_ARG_INFO_EX(arginfo_pg_transaction_status, 0, 0, 1)
-       ZEND_ARG_INFO(0, connnection)
+       ZEND_ARG_INFO(0, connection)
 ZEND_END_ARG_INFO()
 #endif

@@ -4270,7 +4270,7 @@
 /* }}} */
 #endif

-/* {{{ proto int pg_connection_status(resource connnection)
+/* {{{ proto int pg_connection_status(resource connection)
    Get connection status */
 PHP_FUNCTION(pg_connection_status)
 {
@@ -4291,7 +4291,7 @@
 /* }}} */

 #if HAVE_PGTRANSACTIONSTATUS
-/* {{{ proto int pg_transaction_status(resource connnection)
+/* {{{ proto int pg_transaction_status(resource connection)
    Get transaction status */
 PHP_FUNCTION(pg_transaction_status)
 {

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

Reply via email to