From: Yasuo Ohgaki Date: Sat, 24 Aug 2002 07:19:40 +0000 (+0000) Subject: Fixed typo X-Git-Tag: RELEASE_0_91~275 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e4f90530615ca3f467668b2da560a5dea5662772;p=php Fixed typo --- diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index fa004f8a81..2b63a9c271 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -2886,7 +2886,7 @@ PHPAPI int php_pgsql_metadata(PGconn *pg_link, const char *table_name, zval *met pg_result = PQexec(pg_link, querystr.c); if (PQresultStatus(pg_result) != PGRES_TUPLES_OK || (num_rows = PQntuples(pg_result)) == 0) { - php_error(E_NOTICE, "%s(): Dailed to query metadata for '%s' table %s", + php_error(E_NOTICE, "%s(): Failed to query metadata for '%s' table %s", get_active_function_name(TSRMLS_C), table_name, querystr.c); smart_str_free(&querystr); PQclear(pg_result);