]> granicus.if.org Git - php/commitdiff
Fixed typo
authorYasuo Ohgaki <yohgaki@php.net>
Sat, 24 Aug 2002 07:19:40 +0000 (07:19 +0000)
committerYasuo Ohgaki <yohgaki@php.net>
Sat, 24 Aug 2002 07:19:40 +0000 (07:19 +0000)
ext/pgsql/pgsql.c

index fa004f8a81c0c58aec6cd04e073c98f7ad51e9e9..2b63a9c271138b8f884384ce958bee0361bfdac8 100644 (file)
@@ -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);