Browse Source

Fixed proto. Clean up.

migration/unlabaled-1.29.2
Yasuo Ohgaki 24 years ago
parent
commit
1917f5f382
  1. 4
      ext/pgsql/pgsql.c

4
ext/pgsql/pgsql.c

@ -618,7 +618,7 @@ static void php_pgsql_do_connect(INTERNAL_FUNCTION_PARAMETERS, int persistent)
if (Z_TYPE_P(index_ptr) != le_index_ptr) {
RETURN_FALSE;
}
link = (int) (long) index_ptr->ptr; /* XXX: bogus? cast */
link = (int) index_ptr->ptr;
ptr = zend_list_find(link,&type); /* check if the link is still there */
if (ptr && (type==le_link || type==le_plink)) {
Z_LVAL_P(return_value) = link;
@ -850,7 +850,7 @@ PHP_FUNCTION(pg_host)
}
/* }}} */
/* {{{ proto bool pg_ping([resource connection])
/* {{{ proto bool pg_ping(resource connection)
Ping database. If connection is bad, try to reconnect. */
PHP_FUNCTION(pg_ping)
{

Loading…
Cancel
Save