summaryrefslogtreecommitdiff
path: root/sapi/apache
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2003-08-28 17:48:58 +0000
committerIlia Alshanetsky <iliaa@php.net>2003-08-28 17:48:58 +0000
commit21d506103827f9be970869e8fe1f6f321d901bdb (patch)
tree03462e7ff907e3607b1c317b54ac8ca7fe017aa1 /sapi/apache
parent237da469d7c25248fc197a84064d5908928761c7 (diff)
downloadphp-git-21d506103827f9be970869e8fe1f6f321d901bdb.tar.gz
Fixed format bug
Diffstat (limited to 'sapi/apache')
-rw-r--r--sapi/apache/php_apache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache/php_apache.c b/sapi/apache/php_apache.c
index 680f75d30d..a59336a38c 100644
--- a/sapi/apache/php_apache.c
+++ b/sapi/apache/php_apache.c
@@ -416,7 +416,7 @@ PHP_FUNCTION(apache_lookup_uri)
convert_to_string_ex(filename);
if(!(rr = sub_req_lookup_uri((*filename)->value.str.val, ((request_rec *) SG(server_context))))) {
- php_error_docref(NULL TSRMLS_CC, E_WARNING, "URI lookup failed", (*filename)->value.str.val);
+ php_error_docref(NULL TSRMLS_CC, E_WARNING, "URI lookup failed '%s'", (*filename)->value.str.val);
RETURN_FALSE;
}
object_init(return_value);