Skip to content

Commit

Permalink
Fixed format bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilia Alshanetsky committed Aug 28, 2003
1 parent 237da46 commit 21d5061
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sapi/apache/php_apache.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 21d5061

Please sign in to comment.