summaryrefslogtreecommitdiff
path: root/sapi/apache/mod_php4.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2001-08-08 14:01:22 +0000
committerZeev Suraski <zeev@php.net>2001-08-08 14:01:22 +0000
commit6ecae422c4dac0c8c14b6a18fd426c31794f0460 (patch)
tree3896498aa30af4336412e4b3c8e82503b49a3431 /sapi/apache/mod_php4.c
parent815d043b1ee2d71647ce50da6176b8cf13edee46 (diff)
downloadphp-git-6ecae422c4dac0c8c14b6a18fd426c31794f0460.tar.gz
Use zend_first_try
Diffstat (limited to 'sapi/apache/mod_php4.c')
-rw-r--r--sapi/apache/mod_php4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache/mod_php4.c b/sapi/apache/mod_php4.c
index 1321c5cb1b..1bcf3bccf4 100644
--- a/sapi/apache/mod_php4.c
+++ b/sapi/apache/mod_php4.c
@@ -502,7 +502,7 @@ static int send_php(request_rec *r, int display_source_mode, char *filename)
return OK;
}
- zend_try {
+ zend_first_try {
/* We don't accept OPTIONS requests, but take everything else */
if (r->method_number == M_OPTIONS) {
r->allowed |= (1 << METHODS) - 1;