summaryrefslogtreecommitdiff
path: root/execute.c
diff options
context:
space:
mode:
authorBen Fuhrmannek2014-11-25 15:21:33 +0100
committerBen Fuhrmannek2014-11-25 15:21:33 +0100
commit720190413f66caa347cc7f386ca7abd43273e4ca (patch)
treec55e11614246e3cb78b367725f790092bf337d22 /execute.c
parent0fa87e1ab1697cb3b39e3a5663f97dc15cf8d98f (diff)
corrected ugly grammar mistake "an URL" -> "a URL"
Diffstat (limited to 'execute.c')
-rw-r--r--execute.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/execute.c b/execute.c
index fb91284..aa37fb9 100644
--- a/execute.c
+++ b/execute.c
@@ -299,12 +299,12 @@ static zend_bool suhosin_zend_open(const char *filename, zend_file_handle *fh)
299 break; 299 break;
300 300
301 case SUHOSIN_CODE_TYPE_BLACKURL: 301 case SUHOSIN_CODE_TYPE_BLACKURL:
302 suhosin_log(S_INCLUDE, "Include filename ('%s') is an URL that is forbidden by the blacklist", filename); 302 suhosin_log(S_INCLUDE, "Include filename ('%s') is a URL that is forbidden by the blacklist", filename);
303 suhosin_bailout(TSRMLS_C); 303 suhosin_bailout(TSRMLS_C);
304 break; 304 break;
305 305
306 case SUHOSIN_CODE_TYPE_BADURL: 306 case SUHOSIN_CODE_TYPE_BADURL:
307 suhosin_log(S_INCLUDE, "Include filename ('%s') is an URL that is not allowed", filename); 307 suhosin_log(S_INCLUDE, "Include filename ('%s') is a URL that is not allowed", filename);
308 suhosin_bailout(TSRMLS_C); 308 suhosin_bailout(TSRMLS_C);
309 break; 309 break;
310 310
@@ -607,12 +607,12 @@ not_evaled_code:
607 break; 607 break;
608 608
609 case SUHOSIN_CODE_TYPE_BLACKURL: 609 case SUHOSIN_CODE_TYPE_BLACKURL:
610 suhosin_log(S_INCLUDE|S_GETCALLER, "Include filename ('%s') is an URL that is forbidden by the blacklist", op_array->filename); 610 suhosin_log(S_INCLUDE|S_GETCALLER, "Include filename ('%s') is a URL that is forbidden by the blacklist", op_array->filename);
611 suhosin_bailout(TSRMLS_C); 611 suhosin_bailout(TSRMLS_C);
612 break; 612 break;
613 613
614 case SUHOSIN_CODE_TYPE_BADURL: 614 case SUHOSIN_CODE_TYPE_BADURL:
615 suhosin_log(S_INCLUDE|S_GETCALLER, "Include filename ('%s') is an URL that is not allowed", op_array->filename); 615 suhosin_log(S_INCLUDE|S_GETCALLER, "Include filename ('%s') is a URL that is not allowed", op_array->filename);
616 suhosin_bailout(TSRMLS_C); 616 suhosin_bailout(TSRMLS_C);
617 break; 617 break;
618 618